Update .gitlab-ci.yml file

This commit is contained in:
Joey Hafner 2022-02-26 09:38:21 +00:00
parent 30aee4eef0
commit 853c21997e

View File

@ -6,23 +6,6 @@ stages:
- deploy - deploy
before_script: before_script:
# install git
- apt-get -y update
- apt-get -y install git
# install prerequisites for docker
- apt-get -y install ca-certificates curl gnupg lsb-release
- curl -fsSL https://download.docker.com/linux/debian/gpg | gpg --dearmor -o /usr/share/keyrings/docker-archive-keyring.gpg
- echo "deb [arch=$(dpkg --print-architecture) signed-by=/usr/share/keyrings/docker-archive-keyring.gpg] https://download.docker.com/linux/debian $(lsb_release -cs) stable" | tee /etc/apt/sources.list.d/docker.list > /dev/null
# install docker
- apt-get -y update
- apt-get -y install docker-ce docker-ce-cli containerd.io
- docker --version
# install docker compose
- DOCKER_CONFIG=${DOCKER_CONFIG:-$HOME/.docker}
- mkdir -p $DOCKER_CONFIG/cli-plugins
- curl -SL https://github.com/docker/compose/releases/download/v2.2.3/docker-compose-linux-x86_64 -o $DOCKER_CONFIG/cli-plugins/docker-compose
- chmod +x $DOCKER_CONFIG/cli-plugins/docker-compose
- docker compose version
# configure SSH keys # configure SSH keys
- 'which ssh-agent || ( apt-get install -qq openssh-client )' - 'which ssh-agent || ( apt-get install -qq openssh-client )'
- eval $(ssh-agent -s) - eval $(ssh-agent -s)
@ -31,7 +14,7 @@ before_script:
- '[[ -f /.dockerenv ]] && echo -e "Host *\n\tStrictHostKeyChecking no\n\n" > ~/.ssh/config' - '[[ -f /.dockerenv ]] && echo -e "Host *\n\tStrictHostKeyChecking no\n\n" > ~/.ssh/config'
docker-compose-test: docker-compose-test:
image: debian:bullseye image: jafner/debian-bullseye-docker:latest
stage: test stage: test
rules: rules:
- changes: - changes: