deployments/cibus-backend/docker-compose.yml

18 lines
326 B
YAML

version: '3.7'
services:
cibus-backend:
image: kasperhermansen/cibus-backend:7129c1ed44
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