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.
20 lines
511 B
20 lines
511 B
services: |
|
postgres: |
|
image: postgres:17-bookworm |
|
restart: unless-stopped |
|
environment: |
|
POSTGRES_DB: ${DB_NAME} |
|
POSTGRES_USER: ${DB_USER} |
|
POSTGRES_PASSWORD: ${DB_PASSWORD} |
|
volumes: |
|
- ./pgsql/data:/var/lib/postgresql/data |
|
- ./pgsql/postgres.conf:/etc/postgresql/postgresql.conf:ro |
|
command: ["postgres", "-c", "config_file=/etc/postgresql/postgresql.conf"] |
|
ports: |
|
- "127.0.0.1:5432:5432" |
|
networks: |
|
- mynet |
|
|
|
networks: |
|
mynet: |
|
internal: true |