19 lines
359 B
YAML
19 lines
359 B
YAML
|
services:
|
||
|
server:
|
||
|
depends_on:
|
||
|
- postgres
|
||
|
build:
|
||
|
context: .
|
||
|
target: final
|
||
|
ports:
|
||
|
- 3334:3334
|
||
|
postgres:
|
||
|
image: postgres:17
|
||
|
environment:
|
||
|
POSTGRES_USER: postgres
|
||
|
POSTGRES_PASSWORD: postgres
|
||
|
POSTGRES_DB: postgres
|
||
|
volumes:
|
||
|
- ./postgres:/var/lib/postgresql/data
|
||
|
ports:
|
||
|
- 5432:5432
|