-
Notifications
You must be signed in to change notification settings - Fork 14
docker build
Dnomd343 edited this page Jul 14, 2021
·
1 revision
- 交叉构建多架构镜像
shell> docker buildx build -t dnomd343/echoip --platform="linux/amd64,linux/arm64,linux/386,linux/arm/v7" https://github.com/dnomd343/echoIP.git#master --push
- 制作echoIP镜像
shell> docker build -t echoip https://github.com/dnomd343/echoIP.git#master
- 启动容器
shell> docker run -d --name echoip -p 1601:1601 echoip
- 进入容器调试
shell> docker exec -it echoip sh