docker-compose.yml 305 B

1234567891011121314
  1. # access via "http://localhost:8080" (or "http://$(docker-machine ip):8080" if using docker-machine)
  2. # during initial setup, use "mysql" as the MySQL hostname
  3. owncloud:
  4. image: owncloud
  5. links:
  6. - db:mysql
  7. ports:
  8. - 8080:80
  9. db:
  10. image: mariadb
  11. environment:
  12. MYSQL_ROOT_PASSWORD: example