Nextcloud-Docker/.examples/docker-compose/insecure/postgres/fpm/docker-compose.yml

32 lines
464 B
YAML
Raw Normal View History

version: '3'
services:
db:
image: postgres
restart: always
volumes:
- db:/var/lib/postgresql/data
env_file:
- db.env
app:
build: ./app
restart: always
volumes:
- nextcloud:/var/www/html
env_file:
- db.env
web:
image: nginx
restart: always
ports:
- 8080:80
volumes:
- nextcloud:/var/www/html:ro
- ./nginx.conf:/etc/nginx/nginx.conf:ro
volumes:
db:
nextcloud: