Skip to content

Commit

Permalink
fix image version for production
Browse files Browse the repository at this point in the history
  • Loading branch information
tiptenbrink committed Jan 10, 2024
1 parent 05d1e66 commit 358b759
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
6 changes: 3 additions & 3 deletions deploy/build/deploy/production/confspawn_entrypoint.sh
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@
export DEPLOY_NAME="{{ confspawn_env.name }}-${TIDPLOY_TAG}"
export COMPOSE_PROJECT_NAME="{{ main.project }}-${DEPLOY_NAME}"
export NETWORK_NAME="{{ main.docker_net_name }}-${DEPLOY_NAME}"
export KV_VERSION="{{ confspawn_env.name }}-${TIDPLOY_SHA}"
export DB_VERSION="{{ confspawn_env.name }}-${TIDPLOY_SHA}"
export SERVER_VERSION="{{ confspawn_env.name }}-${TIDPLOY_SHA}"
export KV_VERSION="${TIDPLOY_SHA}"
export DB_VERSION="${TIDPLOY_SHA}"
export SERVER_VERSION="${TIDPLOY_SHA}"
docker compose --env-file production.env --profile all pull
docker compose --env-file production.env --profile all up -d
6 changes: 3 additions & 3 deletions deploy/use/production/entrypoint.sh
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@
export DEPLOY_NAME="production-${TIDPLOY_TAG}"
export COMPOSE_PROJECT_NAME="dodeka-${DEPLOY_NAME}"
export NETWORK_NAME="dodeka-${DEPLOY_NAME}"
export KV_VERSION="production-${TIDPLOY_SHA}"
export DB_VERSION="production-${TIDPLOY_SHA}"
export SERVER_VERSION="production-${TIDPLOY_SHA}"
export KV_VERSION="${TIDPLOY_SHA}"
export DB_VERSION="${TIDPLOY_SHA}"
export SERVER_VERSION="${TIDPLOY_SHA}"
docker compose --env-file production.env --profile all pull
docker compose --env-file production.env --profile all up -d

0 comments on commit 358b759

Please sign in to comment.