Created
May 30, 2026 03:56
-
-
Save stepney141/83306db94ee735b3155b9ed38dd6f891 to your computer and use it in GitHub Desktop.
How to run ArchiveTeam Warrior on Docker
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| services: | |
| archiveteam-watchtower: | |
| container_name: archiveteam-watchtower | |
| image: nickfedor/watchtower | |
| labels: | |
| - com.centurylinklabs.watchtower.enable=true | |
| - com.centurylinklabs.watchtower.scope=archiveteam-warrior | |
| volumes: | |
| - '/var/run/docker.sock:/var/run/docker.sock' | |
| command: '--label-enable --cleanup --interval 3600 --scope archiveteam-warrior' | |
| restart: unless-stopped | |
| networks: | |
| - warrior-net | |
| archiveteam-warrior: | |
| container_name: archiveteam-warrior | |
| image: atdr.meo.ws/archiveteam/warrior-dockerfile | |
| environment: | |
| - DOWNLOADER=your_name # Change this to your nickname | |
| - SELECTED_PROJECT=auto | |
| - CONCURRENT_ITEMS=6 | |
| stop_signal: SIGINT | |
| stop_grace_period: 5m | |
| labels: | |
| - com.centurylinklabs.watchtower.enable=true | |
| - com.centurylinklabs.watchtower.scope=archiveteam-warrior | |
| ports: | |
| - '127.0.0.1:8001:8001' | |
| restart: always | |
| networks: | |
| - warrior-net | |
| networks: | |
| warrior-net: | |
| name: warrior-net |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment