Stared work on the manager side
This commit is contained in:
13
Web UI Project/docker-compose.yaml
Normal file
13
Web UI Project/docker-compose.yaml
Normal file
@@ -0,0 +1,13 @@
|
||||
services:
|
||||
web:
|
||||
build: .
|
||||
image: fastapi-htmx:dev
|
||||
container_name: fastapi-htmx
|
||||
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
|
||||
Reference in New Issue
Block a user