16 lines
368 B
Cheetah
16 lines
368 B
Cheetah
version: '3.7'
|
|
|
|
services:
|
|
db:
|
|
image: postgres:13.5
|
|
restart: always
|
|
environment:
|
|
- POSTGRES_DB=cibus
|
|
- POSTGRES_USER=cibus
|
|
- POSTGRES_PASSWORD=somenotverysecurepassword
|
|
- DATABASE_URL="postgres://cibus:somenotverysecurepassword@localhost:5432/cibus"
|
|
ports:
|
|
- 5432:5432
|
|
volumes:
|
|
- ./data/postgres:/var/lib/postgresql/data
|