1 Star 0 Fork 0

ColinWWL/blog

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
docker-compose.yaml 1010 Bytes
一键复制 编辑 原始数据 按行查看 历史
ColinWWL 提交于 2021-07-16 18:20 . update
version: "3.7"
services:
vuepress:
image: node:15
# build:
# context: ./
# dockerfile: Dockerfile
container_name: "vuepress"
tty: true
# restart: always
working_dir: /var/www
command: ["yarn", "dev"]
volumes:
- ./:/var/www
privileged: true
ports:
- "8083:8080"
networks:
vuepress:
ipv4_address: 172.18.0.2
# plantuml服务
plantuml-server:
image: plantuml/plantuml-server
container_name: plantuml-server
tty: true
# restart: always
volumes:
- ./:/opt/www
# ports:
# - 8081:8080
networks:
vuepress:
ipv4_address: 172.18.0.3
plantuml-style-c4:
image: nginx
volumes:
- ./plantuml-style-c4:/usr/share/nginx/html
tty: true
# restart: always
ports:
- "8082:80"
networks:
vuepress:
ipv4_address: 172.18.0.4
networks:
vuepress:
driver: bridge
ipam:
driver: default
config:
- subnet: "172.18.0.0/24"
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/ColinWWL/blog.git
git@gitee.com:ColinWWL/blog.git
ColinWWL
blog
blog
master

搜索帮助