docker-ubuntumirror/start-local-mirror.sh

13 lines
322 B
Bash
Raw Normal View History

2019-03-21 00:39:38 +00:00
#!/bin/bash
docker rm -f local-ubuntu-mirror
docker run -d --name local-ubuntu-mirror \
2020-02-15 18:14:11 +00:00
-v /storage/mirrors/ubuntu:/var/mirror/ubuntu \
--env MIRROR_INTERVAL_SECONDS=10800 \
--env MIRROR_ARCHITECTURES=amd64 \
2019-03-21 00:39:38 +00:00
--dns 8.8.8.8 \
--dns 8.8.4.4 \
2020-02-15 18:14:11 +00:00
-p 8080:80 \
2019-03-21 00:39:38 +00:00
--restart unless-stopped \
sneak/ubuntumirror:latest