Difference between revisions of "Process/Docker Workflow"
Jump to navigation
Jump to search
Line 1: | Line 1: | ||
<syntaxhighlight lang="shell"> | <syntaxhighlight lang="shell"> | ||
docker commit -a"KevinTung" -m"This is the testing of PKC Workflow" 36f0da0de458 localhost:5000/mediawiki:1.1 | |||
docker push localhost:5000/mediawiki:1.1 | |||
docker image remove localhost:5000/mediawiki:1.1 | |||
docker pull localhost:5000/mediawiki:1.1 | docker pull localhost:5000/mediawiki:1.1 | ||
</syntaxhighlight> | </syntaxhighlight> | ||
Deploy the docker image | |||
== [https://docs.docker.com/registry/deploying/#basic-configuration Basic Configuration] == | |||
=== Turn into docker register === | |||
=== Storage customization === | |||
== [https://docs.docker.com/registry/deploying/#deploy-your-registry-using-a-compose-file Deploy as docker-compose] == |
Revision as of 08:20, 25 July 2021
docker commit -a"KevinTung" -m"This is the testing of PKC Workflow" 36f0da0de458 localhost:5000/mediawiki:1.1
docker push localhost:5000/mediawiki:1.1
docker image remove localhost:5000/mediawiki:1.1
docker pull localhost:5000/mediawiki:1.1
Deploy the docker image