1
0
mirror of https://github.com/nextcloud/docker.git synced 2024-06-30 13:10:50 +02:00
docker-nextcloud/.examples/docker-compose/insecure/postgres/apache/docker-compose.yml
Tilo Spannagel 4df6f79568 Allow nextcloud to create the postgres db (#784)
Signed-off-by: Tilo Spannagel <development@tilosp.de>
2019-07-05 13:50:40 +02:00

30 lines
440 B
YAML

version: '3'
services:
db:
image: postgres:alpine
restart: always
volumes:
- db:/var/lib/postgresql/data
env_file:
- db.env
app:
image: nextcloud:apache
restart: always
ports:
- 8080:80
volumes:
- nextcloud:/var/www/html
environment:
- POSTGRES_HOST=db
- POSTGRES_DB=nextcloud
env_file:
- db.env
depends_on:
- db
volumes:
db:
nextcloud: