fix
Deploy service couchdb / service couchdb (push) Successful in 6s
Deploy db-migrations / db-migrations (push) Failing after 31s
Deploy service message-delivery-method-web-push / service message-delivery-method-web-push (push) Failing after 40s

This commit is contained in:
2024-12-03 17:38:22 +02:00
parent 4210436ca2
commit ae63d634a7
4 changed files with 4 additions and 4 deletions
+1 -1
View File
@@ -24,7 +24,7 @@ jobs:
run: COUCHDB_TAG=commit-${{env.GITHUB_SHA}} docker compose -p hereconnect build couchdb
- name: start container
run: COUCHDB_TAG=commit-${{env.GITHUB_SHA}} docker compose -p hereconnect up -d --pull never couchdb
run: COUCHDB_TAG=commit-${{env.GITHUB_SHA}} docker compose -p hereconnect up -d --pull never --no-recreate --wait couchdb
- name: rename to latest
run: docker tag hereconnect/service-couchdb:commit-${{env.GITHUB_SHA}} hereconnect/service-couchdb:latest
@@ -32,7 +32,7 @@ jobs:
run: DB_MIGRATIONS_TAG=commit-${{env.GITHUB_SHA}} docker compose -p hereconnect build db-migrations
- name: start container
run: DB_MIGRATIONS_TAG=commit-${{env.GITHUB_SHA}} docker compose -p hereconnect up --pull never db-migrations
run: DB_MIGRATIONS_TAG=commit-${{env.GITHUB_SHA}} docker compose -p hereconnect up --pull --no-recreate never db-migrations
- name: rename to latest
run: docker tag hereconnect/service-db-migrations:commit-${{env.GITHUB_SHA}} hereconnect/service-db-migrations:latest
@@ -40,7 +40,7 @@ jobs:
run: MESSAGE_DELIVERY_METHOD_WEB_PUSH_TAG=commit-${{env.GITHUB_SHA}} docker compose -p hereconnect build message-delivery-method-web-push
- name: start container
run: MESSAGE_DELIVERY_METHOD_WEB_PUSH_TAG=commit-${{env.GITHUB_SHA}} docker compose -p hereconnect up -d --pull never message-delivery-method-web-push
run: MESSAGE_DELIVERY_METHOD_WEB_PUSH_TAG=commit-${{env.GITHUB_SHA}} docker compose -p hereconnect up -d --pull never --no-recreate --wait message-delivery-method-web-push
- name: rename to latest
run: docker tag hereconnect/service-message-delivery-method-web-push:commit-${{env.GITHUB_SHA}} hereconnect/service-message-delivery-method-web-push:latest
@@ -49,7 +49,7 @@ const headers = {
Authorization: "Basic " + btoa(`${urlObject.username}:${urlObject.password}`),
};
const getUrl = (dbUrlPath) => {
return `${dbObject.protocol}//${urlObject.host}${urlObject.pathname}${dbUrlPath}${urlObject.search}${urlObject.hash}`;
return `${urlObject.protocol}//${urlObject.host}${urlObject.pathname}${dbUrlPath}${urlObject.search}${urlObject.hash}`;
};
export const up = async () => {