You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
amcrest2mqtt/docker-compose.yaml

29 lines
1014 B
YAML

version: "3.8"
services:
amcrest2mqtt:
image: graystorm/amcrest2mqtt:latest
container_name: amcrest2mqtt
restart: unless-stopped
network_mode: host
volumes:
- ./config:/config
environment:
- TZ=America/New_York
healthcheck:
test: ["CMD", "python3", "/app/src/healthcheck.py"]
interval: 60s
timeout: 5s
retries: 3
start_period: 20s
labels:
org.opencontainers.image.title: "amcrest2mqtt"
org.opencontainers.image.description: "Publishes Amcrest camera events and states via MQTT"
org.opencontainers.image.source: "https://github.com/weirdtangent/amcrest2mqtt"
org.opencontainers.image.documentation: "https://github.com/weirdtangent/amcrest2mqtt#readme"
org.opencontainers.image.licenses: "MIT"
org.opencontainers.image.version: "${AMCREST2MQTT_TAG:-latest}"
org.opencontainers.image.authors: "weirdTangent <jeff@weirdtangent.com>"
org.opencontainers.image.url: "https://www.graystorm.com"