devicehub-django/docker-compose.override.yml

31 lines
639 B
YAML
Raw Permalink Normal View History

2025-02-20 05:08:40 +00:00
#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:
2025-02-20 20:11:21 +00:00
image: farga.pangea.org/ereuse/idhub:latest
2025-02-20 05:08:40 +00:00
build:
2025-02-20 20:11:21 +00:00
context: /path/to/idhub/directory
dockerfile: /path/to/idhub/dockerfile
2025-02-20 05:08:40 +00:00
volumes:
2025-02-20 20:11:21 +00:00
- /path/to/idhub/directory:/opt/idhub
2025-02-20 05:08:40 +00:00
environment:
- DEMO=true
- DEBUG=true
idhub-postgres:
ports:
- 5433:5432