-
Notifications
You must be signed in to change notification settings - Fork 184
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
error using DR_DOCKER_STYLE:compose for local training #123
Comments
The workaround (and default) is that DR_DOCKER_STYLE=swarm; this uses the stack deploy etc. Changing to compose mode actually has some implications, and the current init.sh does not handle well, and that must be updated. |
Created #126 as a way to better manage the configuration using the init.sh. When running in a clean container - using init.sh with -s compose I now get a working system. I would need more information about what goes wrong in your setting. |
If I set Starting s3_minio_1 ... error
ERROR: for s3_minio_1 Cannot start service minio: container c9413dc26b2be8126379dc69ebed5c811f7c1f93a8b8111a1adedb475067bd23: endpoint join on GW Network failed: driver failed programming external connectivity on endpoint gateway_fde258ef812b (050a1ba826f6e6f57c4d2d5b6c66b173db390b426f7b3ee82dfdd2c1ab2d0041): Error starting userland proxy: listen tcp4 0.0.0.0:9001: bind: address already in use
ERROR: for minio Cannot start service minio: container c9413dc26b2be8126379dc69ebed5c811f7c1f93a8b8111a1adedb475067bd23: endpoint join on GW Network failed: driver failed programming external connectivity on endpoint gateway_fde258ef812b (050a1ba826f6e6f57c4d2d5b6c66b173db390b426f7b3ee82dfdd2c1ab2d0041): Error starting userland proxy: listen tcp4 0.0.0.0:9001: bind: address already in use
ERROR: Encountered errors while bringing up the project. I am using WSL2. Update: |
Update: But, if I switch back to swarm, the docker service is reinstalled. This causes the issue to reappear if I switch back to compose again (requires manual removal of minio service) |
OK - so the 'feature request' here would be to clean up the swarm service s3_minio. |
Feature moved into #149 |
If the system.env file is modified to have
DR_DOCKER_STYLE:compose
, then runningsource bin/activate.sh
results in error when using local training. It seems that docker tries to spin multiple minio containers and results in port in use error.Should it be changed to
docker stack deploy
or is there any other setting that needs to be changed?The text was updated successfully, but these errors were encountered: