mirror of https://github.com/helloxz/dnmp.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
xiaoz
eb5abb6aed
|
12 months ago | |
---|---|---|
.. | ||
conf | 12 months ago | |
sh | 12 months ago | |
Dockerfile | 12 months ago | |
LICENSE | 12 months ago | |
README.md | 12 months ago | |
docker-compose.yml | 12 months ago |
README.md
xcdn
基于nginx的转发及反向代理工具。
Docker运行
docker run -d --name=xcdn \
-p 880:80 -p 8443:443 \
-v /tmp/xcdn:/data/xcdn \
helloz/xcdn:xcdn202110131217
docker-compose运行(推荐)
version: "3"
services:
xcdn:
image: helloz/xcdn:alpine
container_name: xcdn
volumes:
- /data/xcdn:/data/xcdn
network_mode: "host"
restart:
always