osem-fcy/docker-compose.yml
Henne Vogelsang f15ca210bc
Fix service name in compose override
Services names should match between the config and the override file...
2019-01-29 21:22:19 +01:00

19 lines
325 B
YAML

version: "2"
services:
database:
image: postgres
environment:
PGDATA: /var/lib/postgresql/data/pgdata
osem:
build:
context: .
args:
CONTAINER_USERID: 1000
command: /osem/bin/osem-init.sh
depends_on:
- database
ports:
- 3000:3000
volumes:
- .:/osem