0
0
Fork 0
mirror of https://github.com/nextcloud/docker.git synced 2025-03-15 19:05:09 +01:00

fix #345 let nextcloud install create the postgres database

This commit is contained in:
Marc Brückner 2018-10-15 15:28:51 +02:00
parent 3770bbcb26
commit cde91adf5b
4 changed files with 8 additions and 0 deletions

View file

@ -4,6 +4,8 @@ services:
db: db:
image: postgres image: postgres
restart: always restart: always
environment:
- POSTGRES_DATABASE=not_used
volumes: volumes:
- db:/var/lib/postgresql/data - db:/var/lib/postgresql/data
env_file: env_file:

View file

@ -4,6 +4,8 @@ services:
db: db:
image: postgres image: postgres
restart: always restart: always
environment:
- POSTGRES_DATABASE=not_used
volumes: volumes:
- db:/var/lib/postgresql/data - db:/var/lib/postgresql/data
env_file: env_file:

View file

@ -4,6 +4,8 @@ services:
db: db:
image: postgres image: postgres
restart: always restart: always
environment:
- POSTGRES_DATABASE=not_used
volumes: volumes:
- db:/var/lib/postgresql/data - db:/var/lib/postgresql/data
env_file: env_file:

View file

@ -4,6 +4,8 @@ services:
db: db:
image: postgres image: postgres
restart: always restart: always
environment:
- POSTGRES_DATABASE=not_used
volumes: volumes:
- db:/var/lib/postgresql/data - db:/var/lib/postgresql/data
env_file: env_file: