Browse Source

pip3 install docker-compose

merge-requests/8/head
Steven Foerster 6 years ago
parent
commit
40af88c852
  1. 13
      .gitlab-ci.yml

13
.gitlab-ci.yml

@ -6,6 +6,15 @@ services:
variables: variables:
GIT_SUBMODULE_STRATEGY: "recursive" GIT_SUBMODULE_STRATEGY: "recursive"
MISTBORN_DEFAULT_PASSWORD: "default_password" MISTBORN_DEFAULT_PASSWORD: "default_password"
before_script:
#- apk add docker-compose
- apt-get update
- apt-get
- apt install -y python python3-pip libffi-dev python-backports.ssl-match-hostname
- pip3 install docker-compose
- docker info
- docker-compose --version
stages: stages:
- test - test
@ -28,10 +37,6 @@ stages:
docker_build: docker_build:
stage: test stage: test
before_script:
- apk add docker-compose
- docker info
- docker-compose --version
script: script:
- scripts/subinstallers/gen_prod_env.sh "$MISTBORN_DEFAULT_PASSWORD" - scripts/subinstallers/gen_prod_env.sh "$MISTBORN_DEFAULT_PASSWORD"
- cp compose/production/traefik/traefik.toml.template compose/production/traefik/traefik.toml - cp compose/production/traefik/traefik.toml.template compose/production/traefik/traefik.toml

Loading…
Cancel
Save