deployments/cibus-backend/docker-compose.yml
Kasper Juul Hermansen 221e2bc5bb
All checks were successful
continuous-integration/drone/pr Build is passing
continuous-integration/drone/push Build is passing
Update postgres Docker tag to v16.3
2024-05-09 23:54:28 +00:00

18 lines
326 B
YAML

version: '3.7'
services:
cibus-backend:
image: kasperhermansen/cibus-backend:0bc17eb232
ports:
- 3000:3000
env_file: ".env"
restart: always
depends_on:
- db
db:
image: postgres:16.3
restart: always
env_file: ".env"
volumes:
- ./data/postgres:/var/lib/postgresql/data