GITHUB
Tools collection
All Images are Multiarch (AMD64, ARM64 and ARM) builds and in the following Container Registries:
ghcr.io/tob1as/docker-tools:<TAG>tobi312/tools:<TAG>quay.io/tobi312/tools:<TAG>Tools/Tags:
adminerautosshazcopyc-mqtt-forwarderdnsmasqeasy-rsafiglethtpasswdkeepalivedkiwiircmqtt-boardmqtt-clientmqtt-forwarderpostgres-exporterprometheus-mosquitto-exporterprometheus-mqtt-transportproxyscotchsquidstatic-curlstatic-jqstatic-xqstatic-yqstatic-kubectlstatic-helmstatic-nginxstatic-nginx-unprivilegedstatic-ssh-tools
toolboxtoolbox-extendedadminerevo - Use adminer!pgadmin4 - Use now offical Docker build!irc-exporter - Use now offical Docker build!vwmetrics - Use now offical Docker build!FIGlet is a computer program that generates text banners.
This Docker Image is based on latest AlpineLinux, see Dockerfile for more details.
shdocker run --rm --name figlet -it tobi312/tools:figlet 'Hello :D'
Output:
_ _ _ _ ____ | | | | ___| | | ___ _| _ \ | |_| |/ _ \ | |/ _ \ (_) | | | | _ | __/ | | (_) | _| |_| | |_| |_|\___|_|_|\___/ (_)____/
htpasswd create username password information of a web server.
This Docker Image is based on latest AlpineLinux, see Dockerfile for more details.
shdocker run --rm -it tobi312/tools:htpasswd -bn username passw0rd
Output:
username:$apr1$Sk1pFYwB$ivgO9asJe4WkalyC7L5TV0
Toolbox with git, wget, curl, nano, netcat and more.
This Docker Image is based on latest AlpineLinux, see Dockerfile and Dockerfile (extended) for more details.
sh# start docker run --rm --name toolbox -d tobi312/tools:toolbox # exec docker exec -it toolbox sh # use (example: check port is open) nc -zv -w 3 <HOST> <PORT>
ymlversion: '2.4' services: toolbox: image: tobi312/tools:toolbox #image: tobi312/tools:toolbox-extended container_name: toolbox restart: unless-stopped #user: "1000:1000" # format: "${UID}:${GID}" #entrypoint: [ "/bin/sh", "-c", "--" ] #command: [ "while true; do sleep 60; done;" ]
and then:
sh# start docker-compose -f toolbox.yml up -d # exec (you can use sh or bash) docker-compose -f toolbox.yml exec toolbox sh # or docker exec -it toolbox sh # use (example: check port is open) nc -zv -w 3 <HOST> <PORT>
yamlapiVersion: v1 kind: Pod metadata: name: toolbox namespace: default spec: containers: - name: toolbox image: tobi312/tools:toolbox resources: requests: memory: "128Mi" cpu: "0.1" limits: memory: "512Mi" cpu: "0.5"
and then:
sh# start kubectl apply -f toolbox.yaml # exec kubectl exec -it pod/toolbox -- sh # use (example: check port is open) nc -zv -w 3 <HOST> <PORT>
Or example for Deployment.
dnsmasq is a lightweight dns and dhcp server.
yamlversion: "2.4" services: dnsmasq: image: tobi312/tools:dnsmasq container_name: dnsmasq restart: unless-stopped ports: - 53:53/tcp # DNS - 53:53/udp # DNS - 67:67/udp # DHCP Server #- 68:68/udp # DHCP Client #- 69:69/udp # TFTP volumes: - ./dnsmasq/:/etc/dnsmasq.d/:rw # add your config files in this folder #network_mode: host cap_add: - 'NET_ADMIN'
easy-rsa is a CLI utility to build and manage a PKI CA.
sh# help docker run --rm --name easy-rsa -it tobi312/tools:easy-rsa-3.1.7 help
sh# Preparation mkdir ~/data_easyrsa # IMPORANT: Execute all Command from this/next Folder !! cd ~/data_easyrsa # root-ca # init pki docker run --rm --name easy-rsa -v ${PWD}:/easyrsa:rw -it tobi312/tools:easy-rsa-3.1.7 init-pki # download "vars"-File curl -sL [***] -o ./pki/vars # now EDIT "vars"-File in ./pki # and then build ca: docker run --rm --name easy-rsa -v ${PWD}:/easyrsa:rw -it tobi312/tools:easy-rsa-3.1.7 build-ca # Server Cert (repeat this steps for other domains) # create server cert request docker run --rm --name easy-rsa -v ${PWD}:/easyrsa:rw -it tobi312/tools:easy-rsa-3.1.7 --subject-alt-name="DNS:example.com,DNS:*.example.com,IP:192.168.1.100" gen-req example-com nopass # sign server cert docker run --rm --name easy-rsa -v ${PWD}:/easyrsa:rw -it tobi312/tools:easy-rsa-3.1.7 sign-req server example-com # check cert openssl verify -verbose -CAfile ${PWD}/pki/ca.crt ${PWD}/pki/issued/example-com.crt openssl x509 -noout -text -in ${PWD}/pki/issued/example-com.crt
Preparation:
shmkdir ~/data_easyrsa # IMPORANT: Execute all Command from this/next Folder !! cd ~/data_easyrsa
root-ca:
sh# init pki (need "soft" to write in mounted volume subpath "/easyrsa/root-ca" instead "/easyrsa/pki") docker run --rm --name easy-rsa -e EASYRSA_PKI="/easyrsa/root-ca" -v ${PWD}/root-ca/:/easyrsa/root-ca:rw -it tobi312/tools:easy-rsa-3.1.7 init-pki soft # ASK: Confirm removal: yes # download "vars"-File curl -sL [***] -o ${PWD}/root-ca/vars # now EDIT "vars"-File in ./root-ca # and then build ca: docker run --rm --name easy-rsa -e EASYRSA_PKI="/easyrsa/root-ca" -v ${PWD}/root-ca/:/easyrsa/root-ca:rw -it tobi312/tools:easy-rsa-3.1.7 build-ca # ASK: Enter New CA Key Passphrase: # ASK: Common Name (eg: your user, host, or server name) [Easy-RSA CA]: My Organization CA # check/show content of root-ca "ca.crt" file openssl x509 -noout -text -in ${PWD}/root-ca/ca.crt
intermediate-ca = subca:
sh# init pki (need "soft" to write in mounted volume subpath "/easyrsa/intermediate-ca" instead "/easyrsa/pki") docker run --rm --name easy-rsa -e EASYRSA_PKI="/easyrsa/intermediate-ca" -v ${PWD}/intermediate-ca/:/easyrsa/intermediate-ca:rw -it tobi312/tools:easy-rsa-3.1.7 init-pki soft # ASK: Confirm removal: yes # download "vars"-File curl -sL [***] -o ${PWD}/intermediate-ca/vars # now EDIT "vars"-File in ./intermediate-ca # and then build subca: docker run --rm --name easy-rsa -e EASYRSA_PKI="/easyrsa/intermediate-ca" -v ${PWD}/intermediate-ca/:/easyrsa/intermediate-ca:rw -it tobi312/tools:easy-rsa-3.1.7 build-ca subca # ASK: Enter New CA Key Passphrase: # ASK: Common Name (eg: your user, host, or server name) [Easy-RSA CA]: My Organization Sub-CA # import subca in ca (Note: switch to root-ca): docker run --rm --name easy-rsa -e EASYRSA_PKI="/easyrsa/root-ca" -v ${PWD}/root-ca/:/easyrsa/root-ca:rw -v ${PWD}/intermediate-ca/:/easyrsa/intermediate-ca:rw -it tobi312/tools:easy-rsa-3.1.7 import-req /easyrsa/intermediate-ca/reqs/ca.req intermediate-ca # sign subca with ca (Note: switch to root-ca) docker run --rm --name easy-rsa -e EASYRSA_PKI="/easyrsa/root-ca" -v ${PWD}/root-ca/:/easyrsa/root-ca:rw -it tobi312/tools:easy-rsa-3.1.7 sign-req ca intermediate-ca # ASK: Confirm request details: yes # ASK: Enter pass phrase for /easyrsa/root-ca/private/ca.key: # copy sign subca from root-ca to intermediate-ca folder docker run --rm --name easy-rsa --entrypoint="" -v ${PWD}/root-ca/:/easyrsa/root-ca:rw -v ${PWD}/intermediate-ca/:/easyrsa/intermediate-ca:rw -it tobi312/tools:easy-rsa-3.1.7 cp /easyrsa/root-ca/issued/intermediate-ca.crt /easyrsa/intermediate-ca/ca.crt # or cp ${PWD}/root-ca/issued/intermediate-ca.crt ${PWD}/intermediate-ca/ca.crt # verify subca from ca openssl verify -verbose -CAfile ${PWD}/root-ca/ca.crt ${PWD}/intermediate-ca/ca.crt # check/show content of intermediate-ca "ca.crt" file openssl x509 -noout -text -in ${PWD}/intermediate-ca/ca.crt # copy subca and ca in one file called fullca.crt cat ${PWD}/intermediate-ca/ca.crt ${PWD}/root-ca/ca.crt > ${PWD}/fullca.crt
Server Cert ... for Domain example.com:
sh# create server cert request docker run --rm --name easy-rsa -e EASYRSA_PKI="/easyrsa/intermediate-ca" -v ${PWD}/intermediate-ca/:/easyrsa/intermediate-ca:rw -it tobi312/tools:easy-rsa-3.1.7 --subject-alt-name="DNS:example.com,DNS:*.example.com,IP:192.168.1.100" gen-req example-com nopass # ASK: Common Name (eg: your user, host, or server name) [example-com]:example.com # sign server cert docker run --rm --name easy-rsa -e EASYRSA_PKI="/easyrsa/intermediate-ca" -v ${PWD}/intermediate-ca/:/easyrsa/intermediate-ca:rw -it tobi312/tools:easy-rsa-3.1.7 sign-req server example-com # ASK: Confirm request details: yes # ASK: Enter pass phrase for /easyrsa/intermediate-ca/private/ca.key: # verify cert from subca and ca openssl verify -verbose -CAfile ${PWD}/fullca.crt ${PWD}/intermediate-ca/issued/example-com.crt # check/show content of cert file openssl x509 -noout -text -in ${PWD}/intermediate-ca/issued/example-com.crt # repeat this steps for other domains
-e EASYRSA_PKI="/easyrsa/root-ca" you can use in command --pki-dir=/easyrsa/root-catar cvpzf backup_easyrsa_$(date '+%Y%m%d-%H%M').tar.gz . in data_easyrsa-Folder!docker run --rm --name easy-rsa --entrypoint="" -it tobi312/tools:easy-rsa-3.1.7 bash/usr/local/share/ca-certificates/ and execute dpkg-reconfigure -f noninteractive ca-certificates来自真实用户的反馈,见证轩辕镜像的优质服务
免费版仅支持 Docker Hub 加速,不承诺可用性和速度;专业版支持更多镜像源,保证可用性和稳定速度,提供优先客服响应。
免费版仅支持 docker.io;专业版支持 docker.io、gcr.io、ghcr.io、registry.k8s.io、nvcr.io、quay.io、mcr.microsoft.com、docker.elastic.co 等。
当返回 402 Payment Required 错误时,表示流量已耗尽,需要充值流量包以恢复服务。
通常由 Docker 版本过低导致,需要升级到 20.x 或更高版本以支持 V2 协议。
先检查 Docker 版本,版本过低则升级;版本正常则验证镜像信息是否正确。
使用 docker tag 命令为镜像打上新标签,去掉域名前缀,使镜像名称更简洁。
探索更多轩辕镜像的使用方法,找到最适合您系统的配置方式
通过 Docker 登录认证访问私有仓库
在 Linux 系统配置镜像加速服务
在 Docker Desktop 配置镜像加速
Docker Compose 项目配置加速
Kubernetes 集群配置 Containerd
在宝塔面板一键配置镜像加速
Synology 群晖 NAS 配置加速
飞牛 fnOS 系统配置镜像加速
极空间 NAS 系统配置加速服务
爱快 iKuai 路由系统配置加速
绿联 NAS 系统配置镜像加速
QNAP 威联通 NAS 配置加速
Podman 容器引擎配置加速
HPC 科学计算容器配置加速
ghcr、Quay、nvcr 等镜像仓库
无需登录使用专属域名加速
需要其他帮助?请查看我们的 常见问题 或 官方QQ群: 13763429