25 lines
537 B
YAML
25 lines
537 B
YAML
version: "3.9"
|
|
name: uulm_network_monitoring
|
|
services:
|
|
videoprobe:
|
|
build:
|
|
context: ../
|
|
dockerfile: Dockerfile
|
|
container_name: netmon_receiver_videoprobe
|
|
deploy:
|
|
resources:
|
|
limits:
|
|
cpus : "1.0"
|
|
memory: 512M
|
|
healthcheck:
|
|
test: curl http://localhost:8000
|
|
interval: 10s
|
|
environment:
|
|
- RUST_LOG=info
|
|
- ROCKET_CONFIG=/etc/videoprobe/Rocket.toml
|
|
- GNSS_DEV=/dev/ttyACM0
|
|
ports:
|
|
- 8000:8000
|
|
devices:
|
|
- /dev/ttyACM0:/dev/ttyACM0
|