Skip to content

Instantly share code, notes, and snippets.

@stepney141
Created May 30, 2026 03:56
Show Gist options
  • Select an option

  • Save stepney141/83306db94ee735b3155b9ed38dd6f891 to your computer and use it in GitHub Desktop.

Select an option

Save stepney141/83306db94ee735b3155b9ed38dd6f891 to your computer and use it in GitHub Desktop.
How to run ArchiveTeam Warrior on Docker
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