31 lines
621 B
YAML
31 lines
621 B
YAML
#Default override compose file for dev options
|
|
|
|
services:
|
|
devicehub-django:
|
|
build:
|
|
context: .
|
|
dockerfile: docker/devicehub-django.Dockerfile
|
|
volumes:
|
|
- .:/opt/devicehub-django # bind mount for local development
|
|
environment:
|
|
- DEBUG=true
|
|
|
|
devicehub-postgres:
|
|
ports:
|
|
- 5432:5432
|
|
|
|
|
|
idhub:
|
|
build:
|
|
context: /home/rthomas/ereuse/IdHub
|
|
dockerfile: /home/rthomas/ereuse/IdHub/docker/idhub.Dockerfile
|
|
volumes:
|
|
- /home/rthomas/ereuse/IdHub:/opt/idhub
|
|
environment:
|
|
- DEMO=true
|
|
- DEBUG=true
|
|
|
|
idhub-postgres:
|
|
ports:
|
|
- 5433:5432
|