Docker + nginx + MySQL + PHP
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 a2ede5ec18 update version 6 months ago
..
conf fix bug 6 months ago
sh update version 6 months ago
Dockerfile fix bug 6 months ago
LICENSE update 6 months ago
README.md update 6 months ago
docker-compose.yml fix bug 6 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