18 lines
326 B
YAML
18 lines
326 B
YAML
version: '3.7'
|
|
|
|
services:
|
|
cibus-backend:
|
|
image: kasperhermansen/cibus-backend:7de2d776fc
|
|
ports:
|
|
- 3000:3000
|
|
env_file: ".env"
|
|
restart: always
|
|
depends_on:
|
|
- db
|
|
db:
|
|
image: postgres:13.5
|
|
restart: always
|
|
env_file: ".env"
|
|
volumes:
|
|
- ./data/postgres:/var/lib/postgresql/data
|