摘要: Backup cp -a /etc/apk/repositories /etc/apk/repositories.bak Write in cat > /etc/apk/repositories << EOF https://repo.huaweicloud.com/alpine/v3.18/mai 阅读全文
posted @ 2023-10-09 15:11 Arkx86 阅读(59) 评论(0) 推荐(0) 编辑
摘要: Usage cat > docker-compose.yml <<-'EOF' # https://hub.docker.com/_/mysql # Port: 3306 5433 version: "3" services: mysql: image: mysql:8 environment: - 阅读全文
posted @ 2023-10-08 05:10 Arkx86 阅读(11) 评论(0) 推荐(0) 编辑
摘要: ## Docker ```bash docker run -d -p 9999:9999 -v /path/to/download:/download liwei2633/gopeed ``` ## Docker Compose ```bash cat > docker-compose.yml << 阅读全文
posted @ 2023-06-26 23:34 Arkx86 阅读(140) 评论(0) 推荐(0) 编辑
摘要: ## Installation ```bash # Docs: https://mirrors.ustc.edu.cn/help/brew.git.html#homebrew-linuxbrew sudo apt-get install --no-install-recommends --yes g 阅读全文
posted @ 2023-06-24 09:32 Arkx86 阅读(98) 评论(0) 推荐(0) 编辑
摘要: ## Docker ```bash ``` ## Docker Compose ```bash cat > docker-compose.yml <<-'EOF' # Docs: https://hub.docker.com/r/linuxserver/code-server # Port: 844 阅读全文
posted @ 2023-06-24 08:36 Arkx86 阅读(42) 评论(0) 推荐(0) 编辑
摘要: # Docker ## Installation ```bash # Debian 10 (Buster) # Docs: https://docs.docker.com/engine/install/debian/ apt-get install \ --no-install-recommends 阅读全文
posted @ 2023-06-24 07:56 Arkx86 阅读(64) 评论(0) 推荐(0) 编辑
摘要: ```bash # change the mirror of apt cat > /etc/apt/sources.list ``` ```bash sudo apt-get install --no-install-recommends --yes zsh ``` 阅读全文
posted @ 2023-06-24 07:00 Arkx86 阅读(22) 评论(0) 推荐(0) 编辑
摘要: ## Usage ```bash cat > docker-compose.yml --enable-cors' network_mode: host restart: always volumes: - $PWD/typesense/data/:/data/ EOF # is the passwo 阅读全文
posted @ 2023-06-03 16:59 Arkx86 阅读(58) 评论(0) 推荐(0) 编辑
摘要: ## Usage ```bash cat > docker-compose.yml network_mode: host restart: always volumes: - $PWD/meilisearch/data/:/meili_data/ EOF # ``` ## Start ```bash 阅读全文
posted @ 2023-06-03 11:48 Arkx86 阅读(116) 评论(0) 推荐(0) 编辑
摘要: ```bash ssh-keygen -t rsa ssh-copy-id -i ~/.ssh/id_rsa.pub @ # username # ip ``` 阅读全文
posted @ 2023-05-28 16:05 Arkx86 阅读(15) 评论(0) 推荐(0) 编辑