You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
14 lines
335 B
14 lines
335 B
|
1 year ago
|
services:
|
||
|
|
postgres:
|
||
|
|
build: pg-with-loader
|
||
|
|
container_name: postgres-device-app
|
||
|
|
volumes:
|
||
|
|
- ./db:/var/lib/postgresql/data
|
||
|
|
ports:
|
||
|
|
- "15432:5432"
|
||
|
|
extra_hosts:
|
||
|
|
- host.docker.internal:host-gateway
|
||
|
|
environment:
|
||
|
|
- POSTGRES_DB=postgres
|
||
|
|
- POSTGRES_USER=flower
|
||
|
|
- POSTGRES_PASSWORD=ffdb
|