14 lines
379 B
YAML
14 lines
379 B
YAML
services:
|
|
web:
|
|
build: .
|
|
image: print-manager:dev
|
|
container_name: print-manager
|
|
ports:
|
|
- "8000:8000"
|
|
- "8883:8883" # MQTT over TLS
|
|
- "6000:6000" # MQTT unencrypted
|
|
- "990:990" # MQTT WebSockets over TLS
|
|
volumes:
|
|
- ./app:/app/app # live code edits in dev
|
|
command: uvicorn app.main:app --host 0.0.0.0 --port 8000 --reload
|