17 lines
300 B
YAML
17 lines
300 B
YAML
![]() |
services:
|
||
|
web:
|
||
|
build: .
|
||
|
ports:
|
||
|
- "8080:8080"
|
||
|
depends_on:
|
||
|
- db
|
||
|
db:
|
||
|
image: postgres
|
||
|
volumes:
|
||
|
- ./postgres:/var/lib/postgresql/data
|
||
|
environment:
|
||
|
POSTGRES_DB: furnitureshop
|
||
|
POSTGRES_PASSWORD: ejSLqVRmzGTrWbcA6PNpXC
|
||
|
ports:
|
||
|
- "5454:5432"
|