Return of honkbot, in Rust. Hopefully it won't die all the time.
at main 21 lines 592 B view raw
1services: 2 honkbot: 3 image: atcr.io/goose.art/honkbot:latest 4 restart: unless-stopped 5 env_file: .env 6 environment: 7 - RUST_LOG=info 8 - FALLBACK_IMAGE_DIR=/app/fallback_images 9 10 watchtower: 11 image: containrrr/watchtower 12 restart: unless-stopped 13 volumes: 14 - /var/run/docker.sock:/var/run/docker.sock 15 environment: 16 # Check for new images every 60 seconds 17 - WATCHTOWER_POLL_INTERVAL=60 18 # Only update containers in this compose project 19 - WATCHTOWER_SCOPE=honkbot 20 labels: 21 - "com.centurylinklabs.watchtower.scope=honkbot"