18 lines
324 B
YAML
18 lines
324 B
YAML
version: '3.7'
|
|
|
|
services:
|
|
como-backend:
|
|
image: kasperhermansen/como-backend:88c7acd439
|
|
ports:
|
|
- 3000:3000
|
|
env_file: ".env"
|
|
restart: always
|
|
depends_on:
|
|
- db
|
|
db:
|
|
image: postgres:15.3
|
|
restart: always
|
|
env_file: ".env"
|
|
volumes:
|
|
- ./data/postgres:/var/lib/postgresql/data
|