Docker 遇到的坑 - docker-compose.yml
程序员文章站
2022-03-03 09:04:47
...
根据官方提供的教程中,
docker-compose.yml
version:"3"
services:
web:
# 将 username/repo:tag 替换为您的名称和镜像详细信息
image: username/repository:tag
deploy:
replicas:5
resources:
limits:
cpus:"0.1"
memory:50M
restart_policy:
condition: on-failure
ports:
- "80:80"
networks:
- webnet
networks:
webnet:
是不能直接粘贴使用的,
会报错,常见错误如下:
yaml: line 1: mapping values are not allowed in this context
这里是yml文件格式的问题,
需要在参数后面加个空格,
例如上面的报错就是因为
version: 这里没加空格 "3"