Archive the internet! The ArchiveTeam is working to archive the entire internet. This is in an effort to save our digital heritage, before its lost forever. To read more you can check them out here.
Running your warrior is simple. Refer to the sample docker-compose.yaml file below to get started. No need to set up dns, just save the ip of your machine on your local network to access. http://<yourip>:8001/ to see the status. The top of the UI will also give you a link to a leader board to see where you stack up on data.
version: "3.7"
services:
archiveteam-watchtower:
container_name: archiveteam-watchtower
image: containrrr/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
archiveteam-warrior:
container_name: archiveteam-warrior
image: atdr.meo.ws/archiveteam/warrior-dockerfile
environment:
- DOWNLOADER=warrior1 # 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:
- '8001:8001'
restart: unless-stopped