From 1eb1a278b83427865163cc870babcc7ab0b46b3a Mon Sep 17 00:00:00 2001 From: Nicola Stoira <nicola.stoira@accenture.com> Date: Wed, 31 Jul 2024 12:53:58 +0200 Subject: [PATCH] Revert to latest docker tag --- docker-compose.yaml | 16 ++++++++-------- setup.sh | 2 +- 2 files changed, 9 insertions(+), 9 deletions(-) diff --git a/docker-compose.yaml b/docker-compose.yaml index d34a2862..04205407 100644 --- a/docker-compose.yaml +++ b/docker-compose.yaml @@ -19,7 +19,7 @@ services: api: container_name: api hostname: api - image: registry.dcc.sib.swiss/sphn-semantic-framework/sphn-connector/sphn-connector_api:sphnc-410 + image: registry.dcc.sib.swiss/sphn-semantic-framework/sphn-connector/sphn-connector_api:latest command: > /bin/sh -c "python /home/sphn/code/utils/generate_config_file.py && python /home/sphn/code/api/app/main.py" @@ -41,7 +41,7 @@ services: minio: container_name: minio - image: registry.dcc.sib.swiss/sphn-semantic-framework/sphn-connector/sphn-connector_minio:sphnc-410 + image: registry.dcc.sib.swiss/sphn-semantic-framework/sphn-connector/sphn-connector_minio:latest hostname: minio volumes: - connector-minio-data:/data @@ -60,7 +60,7 @@ services: connector: container_name: connector hostname: connector - image: registry.dcc.sib.swiss/sphn-semantic-framework/sphn-connector/sphn-connector_connector:sphnc-410 + image: registry.dcc.sib.swiss/sphn-semantic-framework/sphn-connector/sphn-connector_connector:latest entrypoint: ["/home/sphn/airflow/airflow.sh"] env_file: - .env @@ -95,7 +95,7 @@ services: data_handler: container_name: data_handler hostname: data_handler - image: registry.dcc.sib.swiss/sphn-semantic-framework/sphn-connector/sphn-connector_data_handler:sphnc-410 + image: registry.dcc.sib.swiss/sphn-semantic-framework/sphn-connector/sphn-connector_data_handler:latest volumes: - ${BASE_PATH:-.}/postgres/init/postgresql:/data-transfer-postgres - ${BASE_PATH:-.}/data-transfer:/data-transfer-certificates @@ -111,7 +111,7 @@ services: db: container_name: postgres hostname: postgres - image: registry.dcc.sib.swiss/sphn-semantic-framework/sphn-connector/sphn-connector_postgres:sphnc-410 + image: registry.dcc.sib.swiss/sphn-semantic-framework/sphn-connector/sphn-connector_postgres:latest depends_on: - data_handler ports: @@ -141,7 +141,7 @@ services: pgadmin: container_name: pgadmin hostname: pgadmin - image: registry.dcc.sib.swiss/sphn-semantic-framework/sphn-connector/sphn-connector_pgadmin:sphnc-410 + image: registry.dcc.sib.swiss/sphn-semantic-framework/sphn-connector/sphn-connector_pgadmin:latest depends_on: db: condition: service_healthy @@ -162,7 +162,7 @@ services: reverse-proxy: container_name: reverse-proxy hostname: reverse-proxy - image: registry.dcc.sib.swiss/sphn-semantic-framework/sphn-connector/sphn-connector_reverse-proxy:sphnc-410 + image: registry.dcc.sib.swiss/sphn-semantic-framework/sphn-connector/sphn-connector_reverse-proxy:latest ports: - "${NGINX_PORT:-1443}:1443" - "${NGINX_PORT_MINIO_API:-1444}:1444" @@ -183,7 +183,7 @@ services: grafana: container_name: grafana hostname: grafana - image: registry.dcc.sib.swiss/sphn-semantic-framework/sphn-connector/sphn-connector_grafana:sphnc-410 + image: registry.dcc.sib.swiss/sphn-semantic-framework/sphn-connector/sphn-connector_grafana:latest user: "472" environment: GF_SECURITY_ADMIN_USER: "${GRAFANA_ADMIN_USER}" diff --git a/setup.sh b/setup.sh index cec8b585..8351c81b 100755 --- a/setup.sh +++ b/setup.sh @@ -14,7 +14,7 @@ ENV_FILE=".env" REGISTRY="registry.dcc.sib.swiss/sphn-semantic-framework/sphn-connector" -TAG_NAME="sphnc-410" +TAG_NAME="latest" if [ -f "$ENV_FILE" ]; then source "$ENV_FILE" -- GitLab