1
0
mirror of https://github.com/nextcloud/docker.git synced 2024-07-16 12:37:44 +02:00
docker-nextcloud/.examples/docker-compose/insecure/postgres/apache/docker-compose.yml

29 lines
403 B
YAML
Raw Normal View History

version: '3'
services:
db:
image: postgres
restart: always
volumes:
- db:/var/lib/postgresql/data
env_file:
- db.env
2018-08-01 22:55:25 +02:00
app:
image: nextcloud:apache
restart: always
ports:
- 8080:80
volumes:
- nextcloud:/var/www/html
environment:
- POSTGRES_HOST=db
env_file:
- db.env
2017-08-16 20:57:33 +02:00
depends_on:
- db
volumes:
db:
nextcloud: