From fbdb888abb333d62e910c1687cfccc25faf98da2 Mon Sep 17 00:00:00 2001 From: Steven Foerster Date: Sat, 21 Mar 2020 00:43:04 -0400 Subject: [PATCH] docker install --- .gitlab-ci.yml | 10 +++------- 1 file changed, 3 insertions(+), 7 deletions(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 24000c3..97ffdae 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -9,11 +9,9 @@ variables: before_script: #- apk add docker-compose - - apt-get update - - apt install -y python python3-pip libffi-dev python-backports.ssl-match-hostname - - pip3 install docker-compose - - docker info - - docker-compose --version + - scripts/subinstallers/docker.sh + - scripts/subinstallers/gen_prod_env.sh "$MISTBORN_DEFAULT_PASSWORD" + - cp compose/production/traefik/traefik.toml.template compose/production/traefik/traefik.toml stages: - test @@ -37,7 +35,5 @@ stages: docker_build: stage: test script: - - scripts/subinstallers/gen_prod_env.sh "$MISTBORN_DEFAULT_PASSWORD" - - cp compose/production/traefik/traefik.toml.template compose/production/traefik/traefik.toml - docker-compose -f base.yml build