V2Ray Docker Image by Teddysun: https://hub.docker.com/r/teddysun/v2ray 1. Pull the image: docker pull teddysun/v2ray 2.create a configuration file /etc/v2ray/config.json in host at first: mkdir -p /etc/v2ray A sample in JSON like…
Read more
官网地址:https://hub.docker.com/r/technosoft2000/calibre-web 1.获取 Docker 镜像: docker pull technosoft2000/calibre-web 启动 calibre-web: docker create –name=calibre-web –restart=always \ -v /data/calibre/books:/books \ -v /data/calibre/config:/calibre-web/config \ -e USE_CONFIG_DIR=true \ -e SET_CONTAINER_TIMEZONE=true \ -e CONTAINER_TIMEZONE=Asia/Shanghai \ -e…
Read more
v2board – 使用aaPanel手动部署: https://docs.v2board.com/deploy/aapanel.html xrayr-project 对接v2board: https://crackair.gitbook.io/xrayr-project/dui-jie-v2board/v2board Docker 安装 xrayr-project: https://crackair.gitbook.io/xrayr-project/xrayr-xia-zai-he-an-zhuang/install/docker Docker run 安装XrayR: docker pull crackair/xrayr:latest && docker run –restart=always –name xrayr -d -v /root/xrayr/config.yml:/etc/XrayR/config.yml –network=host crackair/xrayr:latest
Read more
当你的容器中出现问题(比如我改坏了文件)需要重新部署一台的时候,就需要将这个容器实例删除 接着: #查看当前的容器ID $ docker ps 这里你会看到有两列id,一列是镜像id,一列是容器id,我们要分清楚这两个东西。 #首先将容器实例停止,这里停止容器还可以重启,不影响之前的配置 $ docker stop [容器id] 这样就将docker对应实例删除了,而删除镜像必须在前面两步之后进行: #删除下载或者是创建的镜像文件 $ docker rmi [镜像id] 列出所有的容器 ID docker ps…
Read more
Docker – koel —————— version: ‘3’ services: koel: image: phanan/koel depends_on: – database ports: – 3006:80 …
Read more