-
Notifications
You must be signed in to change notification settings - Fork 1.4k
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
fix(docker): Integrate Hyperswitch Web Client and Control Center into Docker Compose Setup #4200
Conversation
@@ -51,7 +51,7 @@ services: | |||
ports: | |||
- "8080:8080" | |||
networks: | |||
- router_net | |||
- hyperswitch_net |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Please revert this change, and replace hyperswitch_net
with router_net
everywhere else.
build: | ||
context: ./docker | ||
dockerfile: web.Dockerfile |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Could you include the Dockerfile in the PR?
networks: | ||
hyperswitch_net: | ||
#network configurations here if required |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
We already have the network defined at the beginning of the file.
networks: | ||
- hyperswitch_net |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
this might not be needed since there isn't any inter-service communication happening here...
since all communication happens on the host machine and is initiated by browser
Closing this in favor of #4197. |
Type of Change
Description
This docker-compose.yml file now includes code for setting up the hyperswitch-web and hyperswitch-control-center services along with the existing hyperswitch-server service. These services are configured to communicate with each other within the hyperswitch_net network, ensuring better isolation and reliability.
Additional Changes
Motivation and Context
How did you test it?
Checklist
cargo +nightly fmt --all
cargo clippy