Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore(docker): prefix Hyperswitch Docker image URIs with docker.juspay.io #7368

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions aws/hyperswitch_aws_setup.sh
Original file line number Diff line number Diff line change
Expand Up @@ -215,7 +215,7 @@ sudo amazon-linux-extras install docker
sudo service docker start
sudo usermod -a -G docker ec2-user

docker pull juspaydotin/hyperswitch-router:beta
docker pull docker.juspay.io/juspaydotin/hyperswitch-router:beta

curl https://raw.githubusercontent.com/juspay/hyperswitch/v1.55.0/config/development.toml > production.toml

Expand Down Expand Up @@ -265,7 +265,7 @@ echo "ROUTER__SERVER__BASE_URL=\$(curl ifconfig.me)" >> user_data.sh
echo "ROUTER__SECRETS__ADMIN_API_KEY=$ADMIN_API_KEY" >> user_data.sh
echo "EOF" >> user_data.sh

echo "docker run --env-file .env -p 80:8080 -v \`pwd\`/:/local/config juspaydotin/hyperswitch-router:beta ./router -f /local/config/production.toml
echo "docker run --env-file .env -p 80:8080 -v \`pwd\`/:/local/config docker.juspay.io/juspaydotin/hyperswitch-router:beta ./router -f /local/config/production.toml
" >> user_data.sh

echo "Retrieving AWS AMI ID..."
Expand Down
8 changes: 4 additions & 4 deletions config/deployments/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -103,7 +103,7 @@ To run the router, you can use the following snippet in the `docker-compose.yml`
```yaml
### Application services
hyperswitch-server:
image: juspaydotin/hyperswitch-router:latest # This pulls the latest image from Docker Hub. If you wish to use a version without added features (like KMS), you can replace `latest` with `standalone`. However, please note that the standalone version is not recommended for production use.
image: docker.juspay.io/juspaydotin/hyperswitch-router:latest # This pulls the latest image from Docker Hub. If you wish to use a version without added features (like KMS), you can replace `latest` with `standalone`. However, please note that the standalone version is not recommended for production use.
command: /local/bin/router --config-path /local/config/deployments/sandbox_release.toml # <--- Change this to the config file that is generated for the environment.
ports:
- "8080:8080"
Expand All @@ -115,7 +115,7 @@ To run the producer, you can use the following snippet in the `docker-compose.ym

```yaml
hyperswitch-producer:
image: juspaydotin/hyperswitch-producer:latest
image: docker.juspay.io/juspaydotin/hyperswitch-producer:latest
command: /local/bin/scheduler --config-path /local/config/deployments/producer_sandbox_release.toml # <--- Change this to the config file that is generated for the environment.
volumes:
- ./config:/local/config
Expand All @@ -127,7 +127,7 @@ To run the consumer, you can use the following snippet in the `docker-compose.ym

```yaml
hyperswitch-consumer:
image: juspaydotin/hyperswitch-consumer:latest
image: docker.juspay.io/juspaydotin/hyperswitch-consumer:latest
command: /local/bin/scheduler --config-path /local/config/deployments/consumer_sandbox_release.toml # <--- Change this to the config file that is generated for the environment
volumes:
- ./config:/local/config
Expand All @@ -139,7 +139,7 @@ To run the drainer, you can use the following snippet in the `docker-compose.yml

```yaml
hyperswitch-drainer:
image: juspaydotin/hyperswitch-drainer:latest
image: docker.juspay.io/juspaydotin/hyperswitch-drainer:latest
command: /local/bin/drainer --config-path /local/config/deployments/drainer.toml
volumes:
- ./config:/local/config
Expand Down
2 changes: 1 addition & 1 deletion docker-compose-development.yml
Original file line number Diff line number Diff line change
Expand Up @@ -316,7 +316,7 @@ services:
- redisinsight_store:/db

hyperswitch-control-center:
image: juspaydotin/hyperswitch-control-center:latest
image: docker.juspay.io/juspaydotin/hyperswitch-control-center:latest
pull_policy: always
networks:
- router_net
Expand Down
10 changes: 5 additions & 5 deletions docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ services:

### Application services
hyperswitch-server:
image: juspaydotin/hyperswitch-router:standalone
image: docker.juspay.io/juspaydotin/hyperswitch-router:standalone
pull_policy: always
command: /local/bin/router -f /local/config/docker_compose.toml
ports:
Expand All @@ -87,7 +87,7 @@ services:
timeout: 5s

hyperswitch-producer:
image: juspaydotin/hyperswitch-producer:standalone
image: docker.juspay.io/juspaydotin/hyperswitch-producer:standalone
pull_policy: always
command: /local/bin/scheduler -f /local/config/docker_compose.toml
networks:
Expand All @@ -105,7 +105,7 @@ services:
logs: "promtail"

hyperswitch-consumer:
image: juspaydotin/hyperswitch-consumer:standalone
image: docker.juspay.io/juspaydotin/hyperswitch-consumer:standalone
pull_policy: always
command: /local/bin/scheduler -f /local/config/docker_compose.toml
networks:
Expand All @@ -129,7 +129,7 @@ services:
timeout: 10s

hyperswitch-drainer:
image: juspaydotin/hyperswitch-drainer:standalone
image: docker.juspay.io/juspaydotin/hyperswitch-drainer:standalone
pull_policy: always
command: /local/bin/drainer -f /local/config/docker_compose.toml
deploy:
Expand Down Expand Up @@ -176,7 +176,7 @@ services:

### Control Center
hyperswitch-control-center:
image: juspaydotin/hyperswitch-control-center:latest
image: docker.juspay.io/juspaydotin/hyperswitch-control-center:latest
pull_policy: always
ports:
- "9000:9000"
Expand Down
Loading