docker-nextcloud/.examples/docker-compose/insecure/mariadb/fpm/docker-compose.yml

38 lines
527 B
YAML
Raw Normal View History

version: '3'
services:
db:
image: mariadb
# image: mysql
restart: always
volumes:
- db:/var/lib/mysql
environment:
- MYSQL_ROOT_PASSWORD=
env_file:
- db.env
app:
build: ./app
restart: always
volumes:
- nextcloud:/var/www/html
env_file:
- db.env
2017-08-16 20:57:33 +02:00
depends_on:
- db
web:
2017-08-14 15:32:08 +02:00
build: ./web
restart: always
ports:
- 8080:80
volumes:
- nextcloud:/var/www/html:ro
2017-08-16 20:57:33 +02:00
depends_on:
- app
volumes:
db:
nextcloud: