bihealth / sodar-docker-compose

Setup SODAR using Docker Compose
MIT License
2 stars 3 forks source link

Set bridge name manually #26

Closed mikkonie closed 1 year ago

mikkonie commented 1 year ago

Recreating the bridge name automatically during each deployment is generating warnings in monitoring. Might as well set it manually in the docker compose file. This should be doable as follows:

networks:
  sodar:
    driver_opts:
      com.docker.network.bridge.name: sodar-bridge
mikkonie commented 1 year ago

Done. Note to self, this can result in a "network needs to be recreated" error, but in that case docker network prune does the job.