根据官方的步骤执行docker-compose up但是我得到了这样的一个错误
~/CTFd# docker-compose up
ERROR: The Compose file './docker-compose.yml' is invalid because:
networks.internal value Additional properties are not allowed ('internal' was unexpected)
经过多次查询后,是因为版本问题导致,因此需要将原来的docker-compose版本卸载,安装新版本。
卸载docker-compose版本
pip uninstall docker-compose
先升级一下pip
pip install –upgrade pip
继续安装新版本
pip install -U docker-compose
也可以使用国内pip源进行加速,我使用的国内源进行的安装
pip install -i https://pypi.tuna.tsinghua.edu.cn/simple -U docker-compose
之后再执行docker-compose up就没有问题了
平时遇到问题还是需要先根据提示自己一步一步去找解决方法,之后再利用好Google。