I have flask application, code version control in the own instance Gitlab, application run in the docker container. I was set up full automated pipeline in the Gitlab-CI that on every push – build a new version of the application image, push it into GitLab image registry and connect to the remote docker server and update running container with new image version.
So – code, commit, push – everything goest in auto mode. Continue Reading
Tag: docker
docker: Apline configure timezone
Container docker based on Alpine Linux uses standard timezone UTC, if in your case needed any other timezone you must to follow 2 steps
Continue Reading
docker: remote access api setup
Docker able to enable remote connections, that you execute command in your local terminal but execution of it redirects to the remote docker machine.
In my case, I need that because I running Gitlab-CI pipeline that’s build image and I want automatically update it for the running container on the server. Continue Reading
docker: remove unused images
Actively using docker you can face problems out of free disk space because docker images take up too much disk space. You can clean unused and previous versions of your’s rebuilded images.