-
-
Notifications
You must be signed in to change notification settings - Fork 5
Home
David Mansolino edited this page Sep 9, 2020
·
1 revision
The image is automatically pushed to dockerhub when creating a tag. However, it is possible to push an image manually.
First you have to login:
docker login --username=cyberbotics --email=support@cyberbotics.com
Check the image ID using:
docker images
Tag the image:
docker tag bb38976d03cf cyberbotics/webots:latest
Push the image to the repository:
docker push cyberbotics/webots
To remove a local docker image, you should first get its ID:
docker images
And then remove the image corresponding to this ID:
docker rmi -f IMAGE_ID