
docker-compose를 실행할 때 에러가 발생했다.
|
1
2
3
4
|
c:PlutoDocker_Install>docker–compose up –d
Creating network “pluto_install_default” with driver “bridge”
ERROR: Pool overlaps with other one on this address space
c:PlutoDocker_Install>
|
cs |
해결 방법은 기존 Docker Network를 삭제하는 것이다.
|
1
2
3
4
5
6
7
|
c:PlutoDocker_Install>docker network prune
WARNING! This will remove all custom networks not used by at least one container.
Are you sure you want to continue? [y/N] y
Deleted Networks:
mercury_network
venus_network
c:PlutoDocker_Install>
|
cs |
그리고 docker-compose를 다시 실행하면 된다.
|
1
2
3
4
5
6
7
8
9
10
|
c:PlutoDocker_Install>
c:PlutoDocker_Install>docker–compose up –d
Creating network “pluto_install_default” with driver “bridge”
Creating volume “pluto_docker_svn_vol” with default driver
Creating pluto–svn … done
Creating pluto–jenkins … done
Creating pluto–db–compose … done
Creating pluto–compose … done
c:PlutoDocker_Install>
|
cs |
참고
– https://docs.docker.com/engine/reference/commandline/network_prune/