Skip to content

Commit

Permalink
Update README.md
Browse files Browse the repository at this point in the history
  • Loading branch information
stilleshan committed Jun 13, 2021
1 parent 732134f commit 2812347
Show file tree
Hide file tree
Showing 32 changed files with 437 additions and 150 deletions.
7 changes: 5 additions & 2 deletions alpine-openjdk-8-headless/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,9 @@ GitHub [stilleshan/dockerfiles](https://github.com/stilleshan/dockerfiles)
Docker [stilleshan/alpine-openjdk-8-headless](https://hub.docker.com/r/stilleshan/alpine-openjdk-8-headless)
> *docker image support for X86 and ARM*
## 使用
基于 alpine 的 openjdk 8 headless 多架构基础镜像,用于 zfile 等容器构建.
## 简介
基于 alpine 的 openjdk 8 headless 基础镜像.

## 更新
**2021-06-11** 更新 docker 镜像,新增同时支持 X86 和 ARM 架构.

35 changes: 31 additions & 4 deletions anylink/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,10 +4,37 @@ GitHub [stilleshan/dockerfiles](https://github.com/stilleshan/dockerfiles)
Docker [stilleshan/anylink](https://hub.docker.com/r/stilleshan/anylink)
> *docker image support for X86 and ARM*
## 使用
本仓库参考 [bjdgyc/anylink](https://github.com/bjdgyc/anylink) 构建 X86 和 ARM 平台 docker 镜像,具体使用教程请参考原作者仓库.
## 简介
基于 [bjdgyc/anylink](https://github.com/bjdgyc/anylink) 项目的 docker 镜像.

## 更新
**2021-06-09** 更新`0.3.3`版 docker 镜像,新增同时支持 X86 和 ARM 架构.

## 部署
### docker
```shell
docker run -d \
--name=anylink \
--restart=always \
--privileged=true \
-p 443:443 \
-p 8800:8800 \
-v /root/anylink/:/app/conf \
stilleshan/anylink
```

### docker compose
下载 [docker-compose.yml](https://raw.githubusercontent.com/stilleshan/dockerfiles/main/anylink/docker-compose.yml) 执行以下命令启动:
```shell
docker-compose up -d
```

### 配置
关于初始配置,修改密码,网络等更多信息请参考: GitHub [bjdgyc/anylink](https://github.com/bjdgyc/anylink)


## 参考
[开源企业级远程办公 VPN 软件 AnyLink 的 docker 部署及使用心得](https://www.ioiox.com/archives/128.html)
[群晖NAS高级服务 - docker 部署 AnyLink 企业级远程办公 VPN 服务](https://www.ioiox.com/archives/129.html)
- GitHub [bjdgyc/anylink](https://github.com/bjdgyc/anylink)
- [开源企业级远程办公 VPN 软件 AnyLink 的 docker 部署及使用心得](https://www.ioiox.com/archives/128.html)
- [群晖NAS高级服务 - docker 部署 AnyLink 企业级远程办公 VPN 服务](https://www.ioiox.com/archives/129.html)

13 changes: 13 additions & 0 deletions anylink/docker-compose.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
version: "3"
services:
anylink:
image: stilleshan/anylink
container_name: anylink
privileged: true
ports:
- 443:443
- 8080:8800
volumes:
- ./app/conf:/app/conf
restart: always

17 changes: 14 additions & 3 deletions chevereto/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,20 @@ GitHub [stilleshan/dockerfiles](https://github.com/stilleshan/dockerfiles)
Docker [stilleshan/chevereto](https://hub.docker.com/r/stilleshan/chevereto)
> *docker image support for X86 and ARM*
## 使用
本仓库参考 [tanmng/docker-chevereto](https://github.com/tanmng/docker-chevereto) 构建 X86 和 ARM 平台 docker 镜像,具体使用教程请参考原作者仓库.
## 简介
基于 [Chevereto-Free](https://github.com/Chevereto/Chevereto-Free) 项目的 docker 镜像.

## 更新
**2021-06-09** 更新`1.3.0`版 docker 镜像,新增同时支持 X86 和 ARM 架构.

## 部署
### docker compose
下载 [docker-compose.yml](https://raw.githubusercontent.com/stilleshan/dockerfiles/main/chevereto/docker-compose.yml) 执行以下命令启动:
```shell
docker-compose up -d
```
参考教程修改相关参数: [docker compose 部署迁移 Chevereto 图床程序教程](https://www.ioiox.com/archives/80.html)

## 参考
[docker compose 部署迁移 Chevereto 图床程序教程](https://www.ioiox.com/archives/80.html)
GitHub [docker-chevereto](https://github.com/tanmng/docker-chevereto)

42 changes: 42 additions & 0 deletions chevereto/docker-compose.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,42 @@
version: '3'

services:
db:
image: mariadb
# container_name: mariadb
volumes:
- ./database:/var/lib/mysql:rw
restart: always
networks:
- private
environment:
MYSQL_ROOT_PASSWORD: root_password
MYSQL_DATABASE: database_name
MYSQL_USER: database_user
MYSQL_PASSWORD: database_password
TZ: Asia/Shanghai

chevereto:
depends_on:
- db
image: stilleshan/chevereto
# container_name: chevereto
restart: always
networks:
- private
environment:
CHEVERETO_DB_HOST: db
CHEVERETO_DB_USERNAME: database_user
CHEVERETO_DB_PASSWORD: database_password
CHEVERETO_DB_NAME: database_name
CHEVERETO_DB_PREFIX: chv_
TZ: Asia/Shanghai
volumes:
- ./images:/var/www/html/images:rw
- ./php.ini:/usr/local/etc/php/php.ini:ro
ports:
- 12345:80

networks:
private:

41 changes: 29 additions & 12 deletions ddns-aliyun/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,17 +4,32 @@ GitHub [stilleshan/dockerfiles](https://github.com/stilleshan/dockerfiles)
Docker [stilleshan/ddns-aliyun](https://hub.docker.com/r/stilleshan/ddns-aliyun)
> *docker image support for X86 and ARM*
## 使用
### docker 启动
## 简介
基于阿里云 DDNS 的 docker 镜像.

## 更新
**2021-06-11** 更新 docker 镜像,新增同时支持 X86 和 ARM 架构.

## 部署
### docker
```shell
docker run -d \
-e "AKID=[ALIYUN's AccessKey-ID]" \
-e "AKSCT=[ALIYUN's AccessKey-Secret]" \
-e "DOMAIN=ddns.yourdomain.com" \
-e "REDO=600" \
--name=ddns-aliyun \
--restart=always \
-e "AKID=AccessKey-ID" \
-e "AKSCT=AccessKey-Secret" \
-e "DOMAIN=ddns.yourdomain.com" \
-e "REDO=600" \
stilleshan/ddns-aliyun
```

### docker compose
下载 [docker-compose.yml](https://raw.githubusercontent.com/stilleshan/dockerfiles/main/ddns-aliyun/docker-compose.yml) 执行以下命令启动:
```shell
docker-compose up -d
```

### 配置
- AKID: 填写`AccessKeyID`
- AKSCT: 填写`AccessKeySecret`
- DOMAIN: 填写`ddns 域名`
Expand All @@ -23,14 +38,16 @@ docker run -d \
> 使用二级域名来作为 ddns 域名,例如以下示例使用 ddns.ioiox.com ,需要使用的正式域名添加 CNAME 指向 ddns.ioiox.com 即可.
```shell
docker run -d \
-e "AKID=kzazFUTW0uRIWWtk" \
-e "AKSCT=kcbGxOVmc9PUpJWTBWNFNWWnNSbFJW" \
-e "DOMAIN=ddns.ioiox.com" \
-e "REDO=600" \
--name=ddns-aliyun \
--restart=always \
-e "AKID=kzazFUTW0uRIWWtk" \
-e "AKSCT=kcbGxOVmc9PUpJWTBWNFNWWnNSbFJW" \
-e "DOMAIN=ddns.ioiox.com" \
-e "REDO=600" \
stilleshan/ddns-aliyun
```

## 参考
[群晖NAS网络服务 - docker 部署配置阿里云 DDNS 动态域名解析](https://www.ioiox.com/archives/29.html)
更多请参考原始仓库 [honwen/aliyun-ddns-cli](https://github.com/honwen/aliyun-ddns-cli)
- GitHub [honwen/aliyun-ddns-cli](https://github.com/honwen/aliyun-ddns-cli)
- [群晖NAS网络服务 - docker 部署配置阿里云 DDNS 动态域名解析](https://www.ioiox.com/archives/29.html)

12 changes: 12 additions & 0 deletions ddns-aliyun/docker-compose.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
version: "3"
services:
ddns-aliyun:
image: stilleshan/ddns-aliyun
container_name: ddns-aliyun
environment:
- AKID=AccessKey-ID
- AKSCT=AccessKey-Secret
- DOMAIN=ddns.yourdomain.com
- REDO=600
restart: always

27 changes: 20 additions & 7 deletions ddns-dnspod/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,12 +4,18 @@ GitHub [stilleshan/dockerfiles](https://github.com/stilleshan/dockerfiles)
Docker [stilleshan/ddns-dnspod](https://hub.docker.com/r/stilleshan/ddns-dnspod)
> *docker image support for X86 and ARM*
## 使用
### docker 启动
## 简介
基于腾讯云 dnspod.cn DDNS 的 docker 镜像.

## 更新
**2021-06-11** 更新 docker 镜像,新增同时支持 X86 和 ARM 架构.

## 部署
### docker
```shell
docker run -d \
--name=ddns-dnspod \
--restart=always \
--name=dnspod-ddns \
-e "login_token=token_id,token" \
-e "domain=domain.com" \
-e "sub_domain=www" \
Expand All @@ -18,16 +24,23 @@ docker run -d \
stilleshan/ddns-dnspod
```

- login_token: 填写`dnspod.cn`上申请的`API TOKEN`
### docker compose
下载 [docker-compose.yml](https://raw.githubusercontent.com/stilleshan/dockerfiles/main/ddns-dnspod/docker-compose.yml) 执行以下命令启动:
```shell
docker-compose up -d
```

### 配置
- login_token: 填写`dnspod.cn`申请的`API TOKEN`
- domain: 填写`根域名`
- sub_domain: 填写`子域名`

### 示例
> 使用二级域名来作为 ddns 域名,例如以下示例使用 ddns.ioiox.com ,需要使用的正式域名添加 CNAME 指向 ddns.ioiox.com 即可.
```shell
docker run -d \
--name=ddns-dnspod \
--restart=always \
--name=dnspod-ddns \
-e "login_token=123456,5MTlmZRFZrWkdFMVTU2VFE9PX" \
-e "domain=ioiox.com" \
-e "sub_domain=ddns" \
Expand All @@ -37,6 +50,6 @@ docker run -d \
```

## 参考
[群晖NAS网络服务 - docker 部署配置腾讯云 DNSPod DDNS 动态域名解析](https://www.ioiox.com/archives/112.html)
更多请参考原始仓库 [strahe/dnspod-ddns](https://github.com/strahe/dnspod-ddns)
- GitHub [strahe/dnspod-ddns](https://github.com/strahe/dnspod-ddns)
- [群晖NAS网络服务 - docker 部署配置腾讯云 DNSPod DDNS 动态域名解析](https://www.ioiox.com/archives/112.html)

13 changes: 13 additions & 0 deletions ddns-dnspod/docker-compose.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
version: "3"
services:
ddns-dnspod:
image: stilleshan/ddns-dnspod
container_name: ddns-dnspod
environment:
- login_token=token_id,token
- domain=domain.com
- sub_domain=www
- interval=10
- ip_count=1
restart: always

22 changes: 20 additions & 2 deletions ga-proxy/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,24 @@ GitHub [stilleshan/dockerfiles](https://github.com/stilleshan/dockerfiles)
Docker [stilleshan/ga-proxy](https://hub.docker.com/r/stilleshan/ga-proxy)
> *docker image support for X86 and ARM*
## 使用
本仓库参考 [giuem/ga-proxy](https://github.com/giuem/ga-proxy) 构建 X86 和 ARM 平台 docker 镜像,具体使用教程请参考原作者仓库.
## 简介
基于 [giuem/ga-proxy](https://github.com/giuem/ga-proxy) 项目的 docker 镜像.

## 更新
**2021-06-09** 更新`1.2.0`版 docker 镜像,新增同时支持 X86 和 ARM 架构.

## 部署
### docker
```shell
docker run -d --name=ga-proxy --restart=always -p 12345:80 stilleshan/ga-proxy
```

### docker compose
下载 [docker-compose.yml](https://raw.githubusercontent.com/stilleshan/dockerfiles/main/ga-proxy/docker-compose.yml) 执行以下命令启动:
```shell
docker-compose up -d
```

## 参考
GitHub [giuem/ga-proxy](https://github.com/giuem/ga-proxy)

12 changes: 7 additions & 5 deletions ga-proxy/docker-compose.yml
Original file line number Diff line number Diff line change
@@ -1,8 +1,10 @@
version: "3.3"
services:
proxy:
image: giuem/ga-proxy
ga-proxy:
image: stilleshan/ga-proxy
container_name: ga-proxy
ports:
- 12345:80
restart: always
ports:
- 9080:80



19 changes: 17 additions & 2 deletions gh-proxy/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,23 @@ GitHub [stilleshan/dockerfiles](https://github.com/stilleshan/dockerfiles)
Docker [stilleshan/gh-proxy](https://hub.docker.com/r/stilleshan/gh-proxy)
> *docker image support for X86 and ARM*
## 使用
本仓库参考 [hunshcn/gh-proxy](https://github.com/hunshcn/gh-proxy) 构建 X86 和 ARM 平台 docker 镜像,具体使用教程请参考原作者仓库.
## 简介
基于 [hunshcn/gh-proxy](https://github.com/hunshcn/gh-proxy) 项目的 docker 镜像.

## 更新
**2021-06-09** 更新`2.1`版 docker 镜像,新增同时支持 X86 和 ARM 架构.

## 部署
### docker
```shell
docker run -d --name=gh-proxy --restart=always -p 12345:80 stilleshan/gh-proxy
```

### docker compose
下载 [docker-compose.yml](https://raw.githubusercontent.com/stilleshan/dockerfiles/main/gh-proxy/docker-compose.yml) 执行以下命令启动:
```shell
docker-compose up -d
```

## 参考
[ghproxy.com](https://ghproxy.com)
Expand Down
9 changes: 9 additions & 0 deletions gh-proxy/docker-compose.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
version: "3"
services:
gh-proxy:
image: stilleshan/gh-proxy
container_name: gh-proxy
ports:
- 12345:80
restart: always

Loading

0 comments on commit 2812347

Please sign in to comment.