docker起手式

Clone

1
2
3
docker run --name repo alpine/git clone \
https://github.com/docker/getting-statred.git
docker cp repo:/git/getting-started/ .

Build

1
2
cd getting-started
docker build -t docker101tutorial .

Run

1
2
docker run -dp 80:80 \
--name docker-tutorial docker101tutorial

Share

1
2
docker tag docker101tutorial wanf3ng/docker101tutorial
docker push wanf3ng/docker101tutorial

docker起手式
https://wanf3ng.github.io/2021/01/29/docker起手式/
作者
wanf3ng
发布于
2021年1月29日
许可协议