
docker
文章平均质量分 59
viafcccy
reality is malleable.
展开
-
docker查看环境变量方法总结
#案例:以mysql:5.7镜像为基础生成的容器为例,使用compose生成# add this file# default MySQL root password is 123456version: '3.1'services: mysql: image: mysql:5.7 container_name: redmine-mysql restart: always ports: - 3305:3306 volumes: - .原创 2021-04-09 15:11:12 · 10579 阅读 · 0 评论 -
docker-compose:数据卷volumes挂载规则
案例compose# add this file# default MySQL root password is 123456version: '3.1'services: mysql: image: mysql:5.7 container_name: mysql_5.7 restart: always ports: - 3305:3306 volumes: - ./mysql_config/conf.d:/etc/mysql/c原创 2021-04-08 11:53:59 · 25782 阅读 · 1 评论