deployments/cibus-backend/docker-compose.yml
Kasper Juul Hermansen 461c3a85ec
All checks were successful
continuous-integration/drone/pr Build is passing
continuous-integration/drone/push Build is passing
Update postgres Docker tag to v15.4
2023-08-11 20:11:13 +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:15.4
restart: always
env_file: ".env"
volumes:
- ./data/postgres:/var/lib/postgresql/data