我的 gitlab-ci.yml 代码
variables:
IMAGE_TAG: $CI_REGISTRY_IMAGE:$CI_COMMIT_SHORT_SHA
stages:
- build
docker-build:
# Official docker image.
image: docker:latest
stage: build
services:
- docker:dind
before_script:
- echo $CI_BUILD_TOKEN | docker login -u "$CI_REGISTRY_USER" --password-stdin $CI_REGISTRY
script:
- docker build --pull -t "$IMAGE_TAG" .
- docker push "$IMAGE_TAG"
我在 gitlab.com 中的 Dockerfile
FROM nginx:alpine
COPY ./* /usr/share/nginx/html/
我的 Amazon linux 2 中的 docker-compose.yml
version: '3.3'
services:
web:
image: registry.gitlab.com/my-first-test-git/egesto-lite:latest
ports:
- "8084:80"
restart: always
我想将新推送的 docker 镜像自动部署到 Amazon linux,而不是部署名为“latest”的标签。