docker-compose.yaml 562 B

123456789101112131415161718192021222324
  1. version: "3.9"
  2. services:
  3. watchdog-senslog-prod:
  4. container_name: watchdog_senslog
  5. image: senslog/watchdog-senslog
  6. environment:
  7. TZ: "Europe/Prague"
  8. build:
  9. target: production
  10. args:
  11. config_file: ./config/release-senslog-config.yaml
  12. context: .
  13. watchdog-telemetry-prod:
  14. container_name: watchdog_telemetry
  15. image: senslog/watchdog-telemetry
  16. environment:
  17. TZ: "Europe/Prague"
  18. build:
  19. target: production
  20. args:
  21. config_file: ./config/release-telemetry-config.yaml
  22. context: .