18 lines
283 B
Cheetah
18 lines
283 B
Cheetah
|
version: '3.7'
|
||
|
|
||
|
services:
|
||
|
db:
|
||
|
build:
|
||
|
context: .
|
||
|
dockerfile: local_up.Dockerfile
|
||
|
restart: always
|
||
|
environment:
|
||
|
- POSTGRES_PASSWORD=somenotverysecurepassword
|
||
|
ports:
|
||
|
- 5432:5432
|
||
|
volumes:
|
||
|
- pgdata:/var/lib/postgresql/data
|
||
|
|
||
|
volumes:
|
||
|
pgdata:
|