diff --git a/.github/workflows/deploy_mainnet.yml b/.github/workflows/deploy_mainnet.yml index c6ff549..02a2cb4 100644 --- a/.github/workflows/deploy_mainnet.yml +++ b/.github/workflows/deploy_mainnet.yml @@ -42,7 +42,7 @@ jobs: - name: checkout ecs repo uses: actions/checkout@v4 with: - repository: sygmaprotocol/devops + repository: sprintertech/devops token: ${{ secrets.GHCR_TOKEN }} ref: main diff --git a/.github/workflows/deploy_mainnet_api.yml b/.github/workflows/deploy_mainnet_api.yml index 76230b9..6d50a28 100644 --- a/.github/workflows/deploy_mainnet_api.yml +++ b/.github/workflows/deploy_mainnet_api.yml @@ -40,7 +40,7 @@ jobs: - name: checkout ecs repo uses: actions/checkout@v4 with: - repository: sygmaprotocol/devops + repository: sprintertech/devops token: ${{ secrets.GHCR_TOKEN }} ref: main diff --git a/.github/workflows/deploy_testnet.yml b/.github/workflows/deploy_testnet.yml index aec2066..7ee3966 100644 --- a/.github/workflows/deploy_testnet.yml +++ b/.github/workflows/deploy_testnet.yml @@ -71,7 +71,7 @@ jobs: - name: checkout ecs repo uses: actions/checkout@v4 with: - repository: sygmaprotocol/devops + repository: sprintertech/devops token: ${{ secrets.GHCR_TOKEN }} ref: main diff --git a/.github/workflows/deploy_testnet_api.yml b/.github/workflows/deploy_testnet_api.yml index d0d785f..c8e521a 100644 --- a/.github/workflows/deploy_testnet_api.yml +++ b/.github/workflows/deploy_testnet_api.yml @@ -73,7 +73,7 @@ jobs: - name: checkout ecs repo uses: actions/checkout@v4 with: - repository: sygmaprotocol/devops + repository: sprintertech/devops token: ${{ secrets.GHCR_TOKEN }} ref: main diff --git a/Dockerfile b/Dockerfile index ae44460..5d32c57 100644 --- a/Dockerfile +++ b/Dockerfile @@ -34,7 +34,7 @@ COPY --from=builder /app/node_modules ./node_modules COPY --from=builder /app/package*.json ./ COPY --from=builder /app/build ./build COPY --from=builder /app/prisma ./prisma -LABEL org.opencontainers.image.source https://github.com/sygmaprotocol/sygma-explorer-indexer +LABEL org.opencontainers.image.source https://github.com/sprintertech/sygma-explorer-indexer EXPOSE 8000 COPY start-prod.sh /start-prod.sh diff --git a/Dockerfile.api b/Dockerfile.api index 9f54357..f11e215 100644 --- a/Dockerfile.api +++ b/Dockerfile.api @@ -34,7 +34,7 @@ FROM node:18.15-alpine COPY --from=builder /app/node_modules ./node_modules COPY --from=builder /app/package*.json ./ COPY --from=builder /app/build ./build -LABEL org.opencontainers.image.source https://github.com/sygmaprotocol/sygma-explorer-indexer +LABEL org.opencontainers.image.source https://github.com/sprintertech/sygma-explorer-indexer EXPOSE 8000 CMD [ "node", "./build/index.js"] \ No newline at end of file diff --git a/docker-compose.yml b/docker-compose.yml index 720a55c..a46e0e6 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -1,7 +1,7 @@ version: '3.7' services: evm1: - image: ghcr.io/sygmaprotocol/indexer-evm1:latest + image: ghcr.io/sprintertech/indexer-evm1:latest container_name: evm1 command: ganache-cli --chainId 1337 -d --db data/ --blockTime 2 > /dev/null logging: @@ -10,7 +10,7 @@ services: - "8545:8545" evm2: - image: ghcr.io/sygmaprotocol/indexer-evm2:latest + image: ghcr.io/sprintertech/indexer-evm2:latest command: ganache-cli --chainId 1338 -d --db data/ --blockTime 2 > /dev/null container_name: evm2 logging: @@ -21,7 +21,7 @@ services: substrate-pallet: container_name: substrate-pallet command: ["--pruning=25000"] - image: ghcr.io/sygmaprotocol/indexer-substrate:latest + image: ghcr.io/sprintertech/indexer-substrate:latest ports: - "9944:9944" - "9933:9933" @@ -80,7 +80,7 @@ services: dockerfile: ./Dockerfile restart: always environment: - DATABASE_URL: mongodb://mongo1:30001/sygmaprotocol-explorer-indexer?replicaSet=my-replica-set&authSource=admin&retryWrites=true&w=majority + DATABASE_URL: mongodb://mongo1:30001/sprintertech-explorer-indexer?replicaSet=my-replica-set&authSource=admin&retryWrites=true&w=majority SHARED_CONFIG_URL: https://ipfs.io/ipfs/bafkreiasnla2ya55of6nwm3swjstip4q2ixfa3t6tvixyibclfovxnerte RPC_URL_CONFIG: '[{"id": 1, "endpoint": "http://evm1:8545"}, {"id": 2, "endpoint": "http://evm2:8545"}, {"id": 3, "endpoint": "ws://substrate-pallet:9944"}]' RETRY_COUNT: '1' @@ -91,6 +91,6 @@ services: context: . dockerfile: ./Dockerfile.api environment: - DATABASE_URL: mongodb://mongo1:30001/sygmaprotocol-explorer-indexer + DATABASE_URL: mongodb://mongo1:30001/sprintertech-explorer-indexer ports: - "8000:8000" \ No newline at end of file