db:
container_name: db
image: postgres:13
platform: linux/x86_64
ports:
- '5432:5432'
environment:
POSTGRES_USER: root
POSTGRES_PASSWORD: 123
POSTGRES_DB: solid-hour-2
volumes:
- ./postgres.conf:/etc/postgresql/postgresql.conf
- ./data:/var/lib/postgresql/data
command: postgres -c config_file=/etc/postgresql/postgresql.conf
db:
container_name: db
image: postgres:13
platform: linux/x86_64
ports:
- '5432:5432'
environment:
POSTGRES_USER: root
POSTGRES_PASSWORD: 123
POSTGRES_DB: solid-hour-2
volumes:
- ./postgres.conf:/etc/postgresql/postgresql.conf
- ./data:/var/lib/postgresql/data
command: postgres -c config_file=/etc/postgresql/postgresql.conf