diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index de03d6c93d40be712885cfa74b18658578320276..e0b451ea6da3eb39ca9404202d128d37d2a2943e 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -96,6 +96,8 @@ variables: tags: - deploy - swarm + variables: + APP_NAME: geomag-algorithms .mage: variables: @@ -148,3 +150,5 @@ Deploy Mage01: - .deploy - .staging - .mage + variables: + APP_NAME: geomag-algorithms diff --git a/scripts/custom.funcs.sh b/scripts/custom.funcs.sh index 2cdd66ba7b86d2822ac30e62c5b2423c94ac1d05..c09190d260d3ff48aa78e714c5564a3b644f647a 100644 --- a/scripts/custom.funcs.sh +++ b/scripts/custom.funcs.sh @@ -11,7 +11,6 @@ preStackDeployHook () { ## writeYmlFile () { local ymlFileName="${APP_NAME}.yml"; - local configName="assets-$(date +%H%M%S)-$$"; cat <<-EO_YML > ${ymlFileName} version: "3.5" @@ -32,14 +31,12 @@ services: order: start-first parallelism: 3 ports: - - 8000:8000 + - 8000 environment: - BASE_HREF=${BASE_HREF} - DATA_HOST=${DATA_HOST} - DATA_PORT=${DATA_PORT} - DATA_TYPE=${DATA_TYPE} - SITE_URL=${SITE_URL} - configs: - - source: ${configName} EO_YML }