25 lines
446 B
YAML
25 lines
446 B
YAML
version: '3.8'
|
|
|
|
services:
|
|
|
|
postgres:
|
|
image: postgres:15.5-alpine3.19
|
|
volumes:
|
|
- bizmatch_volume:/var/lib/postgresql/data
|
|
environment:
|
|
POSTGRES_DB: ${POSTGRES_DB}
|
|
POSTGRES_USER: ${POSTGRES_USER}
|
|
POSTGRES_PASSWORD: ${POSTGRES_PASSWORD}
|
|
ports:
|
|
- "5432:5432"
|
|
networks:
|
|
- bizmatch
|
|
|
|
networks:
|
|
bizmatch:
|
|
external: true
|
|
|
|
volumes:
|
|
bizmatch_volume:
|
|
external: true
|