Automate Docker deployment with Gitlab
Going to deploy single Docker container to remote server. Good for all sorts of small projects and pages, like this blog :) .gitlab-ci.yml Create .gitlab-ci.yml file in project root # Setup 2 steps: # dockerize Build container # deploy Deploy to remote server stages: - dockerize - deploy dockerize: stage: dockerize image: