What are the Slack Archives?
Itβs a history of our time together in the Slack Community! Thereβs a ton of knowledge in here, so feel free to search through the archives for a possible answer to your question.
Because this space is not active, you wonβt be able to create a new post or comment here. If you have a question or want to start a discussion about something, head over to our categories and pick one to post in! You can always refer back to a post from Slack Archives if needed; just copy the link to use it as a reference..
I'd like to have multiple B2C shops I can use to experiment. Is there a way to separate the volumes
I'd like to have multiple B2C shops I can use to experiment. Is there a way to separate the volumes so I don't over-write the data?
Comments
-
Yes, please use different
namespace
in deploy files.0 -
Forgot to add that it's impossible to have multiple shops running simultaneously.
But with different namespaces they won't interfere from images\volumes perspective.0 -
Thats what I wanted to know, super! Thank you!
0 -
It' also possible to have multiple shops running on top of the same docker engine. Just remove the gateways exposed ports, set each shop's domain name to sth like '.shop-1.localhost', '.shop-2.localhost' and so on and then put an ingress nginx in front of all your gateways.
0 -
Where would you set the domain name for each shop, just in the configuration?
0 -
deploy.yml
0 -
the setup is like this:
0 -
nginx ingress ('proxy' in the chart) is like (just for the domain name 'b2c.localhost'):
upstream b2c { server b2c_gateway_1:80; } server { listen 80; listen [::]:80; server_name *.b2c.localhost; location / { proxy_pass <http://b2c>; proxy_set_header Host $host; } } server { listen 80; listen [::]:80; server_name b2c.localhost; location / { proxy_pass <http://b2c>; proxy_set_header Host $host; } }
0 -
Nice! I'll give it a go. Thats pretty good work Stephan
0
Categories
- All Categories
- 42 Getting Started & Guidelines
- 7 Getting Started in the Community
- 8 Additional Resources
- 7 Community Ideas and Feedback
- 76 Spryker News
- 929 Developer Corner
- 787 Spryker Development
- 89 Spryker Dev Environment
- 362 Spryker Releases
- 3 Oryx frontend framework
- 35 Propel ORM
- 68 Community Projects
- 3 Community Ideation Board
- 30 Hackathon
- 3 PHP Bridge
- 6 Gacela Project
- 26 Job Opportunities
- 3.2K π Slack Archives
- 116 Academy
- 5 Business Users
- 370 Docker
- 551 Slack General
- 2K Help
- 75 Knowledge Sharing
- 6 Random Stuff
- 4 Code Testing
- 32 Product & Business Questions
- 70 Spryker Safari Questions
- 50 Random