Ensure the domain resolution is managed by the alicloud.
docker run -it --rm \
-e "ALIYUN_AK=<access_key>" \
-e "ALIYUN_SK=<secret_key>" \
-e "EMAIL=<contact email>" \
-v /var/local/certs:/etc/letsencrypt acbig/certbot-dns-aliyun:1.0.0 obtain_cert \
| <!DOCTYPE html><html lang="en"><head><style type="text/css">*{transition: all 0.6s;}html {height: 100%;}body{font-family: 'Lato', sans-serif;color: #888;margin: 0;}#main{display: table;width: 100%;height: 100vh;text-align: center;}.fof{display: table-cell;vertical-align: middle;}.fof h1{font-size: 50px;display: inline-block;padding-right: 12px;animation: type .5s alternate infinite;}@keyframes type{from{box-shadow: inset -3px 0px 0px #888;}to{box-shadow: inset -3px 0px 0px transparent;}}</style></head><body><div id="main"><div class="fof"><h1>Oops, (-4o4-) Not Found.</h1></div></div></body></html> |
| package main | |
| import "fmt" | |
| func main() { | |
| var nums []int = []int{10, 7, 8, 1, 4, 3} | |
| topDownMergesort(nums) | |
| fmt.Println(nums) | |
| } |
| package main | |
| import "fmt" | |
| func main() { | |
| var nums []int = []int{3, 2, 1, 2, 5, 9, 8, 6, 7} | |
| shellsort(nums) | |
| fmt.Println(nums) | |
| } |
| package main | |
| import "fmt" | |
| func main() { | |
| var nums []int = []int{57, 40, 38, 11, 13, 34, 48, 75, 6, 19, 9, 7} | |
| heapsort(nums) | |
| fmt.Println(nums) | |
| } |
| package main | |
| import "fmt" | |
| func main() { | |
| var nums []int = []int{6, 1, 2, 7, 9, 3, 4, 5, 10, 8} | |
| quicksort(nums, 0, len(nums)-1) | |
| fmt.Println(nums) | |
| } |
docker run -d -v /var/run/docker.sock:/var/run/docker.sock -p 0.0.0.0:1234:1234 bobrik/socat TCP-LISTEN:1234,fork UNIX-CONNECT:/var/run/docker.sock
docker run -d -p 0.0.0.0:6444:6443 bobrik/socat TCP-LISTEN:6443,fork TCP:docker-desktop:6443
| FROM scottyhardy/docker-wine:latest | |
| RUN apt-get update && apt-get -y install \ | |
| locales \ | |
| language-pack-zh-hans \ | |
| fonts-droid-fallback \ | |
| ttf-wqy-zenhei \ | |
| ttf-wqy-microhei \ | |
| fonts-arphic-ukai \ | |
| fonts-arphic-uming |