2022-08-14 17:30:53 +02:00
|
|
|
version: '3.7'
|
|
|
|
|
|
|
|
services:
|
2022-08-14 20:17:37 +02:00
|
|
|
cibus-backend:
|
2022-08-21 16:25:10 +02:00
|
|
|
image: kasperhermansen/cibus-backend:7de2d776fc
|
2022-08-14 17:30:53 +02:00
|
|
|
ports:
|
2022-08-14 20:17:37 +02:00
|
|
|
- 3000:3000
|
2022-08-14 17:30:53 +02:00
|
|
|
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
|