16 lines
362 B
YAML
16 lines
362 B
YAML
services:
|
|
app:
|
|
build: .
|
|
env_file:
|
|
- .env
|
|
postgres:
|
|
image: postgres:14-alpine
|
|
ports:
|
|
- 5432:5432
|
|
volumes:
|
|
- ~/apps/postgres:/var/lib/postgresql/data
|
|
environment:
|
|
- POSTGRES_PASSWORD=Solvesall123
|
|
- POSTGRES_USER=sa
|
|
- POSTGRES_DB=master
|