fixes
This commit is contained in:
15
examples/docker-compose-postgres.yaml
Normal file
15
examples/docker-compose-postgres.yaml
Normal file
@@ -0,0 +1,15 @@
|
||||
services:
|
||||
postgres:
|
||||
image: postgres
|
||||
command: 'postgres -c config_file=/etc/postgresql/postgresql.conf'
|
||||
volumes:
|
||||
- type: bind
|
||||
source: ./postgresql.conf
|
||||
target: /etc/postgresql/postgresql.conf
|
||||
- type: bind
|
||||
source: ./docker-entrypoint-initdb.d
|
||||
target: /docker-entrypoint-initdb.d/
|
||||
isDirectory: true
|
||||
environment:
|
||||
POSTGRES_USER: $SERVICE_USER_POSTGRES
|
||||
POSTGRES_PASSWORD: $SERVICE_PASSWORD_POSTGRES
|
Reference in New Issue
Block a user