-
Notifications
You must be signed in to change notification settings - Fork 100
Closed
Description
Description of the problem
We want to deploy several Skosmos instances on the same machine, but the current docker-compose.yml has several issues that prevents this:
- unnecessary
container_nameproperties on services, which makes container names conflict when the second instance is started docker-compose.ymlfile in adockerfilessubfolder, which is used to construct container names (after explicitcontainer_nameare removed), e.g.dockerfiles_skosmos_1
My suggestion:
- remove
container_nameproperties - move
docker-compose.ymlto the top-level dir
Then we can launch Skosmos from 2 different folders, e.g. Skosmos-A and Skosmos-B, and the container names would become skosmos-a-skosmos-1, skosmos-a-virtuoso-1 etc. and skosmos-b-skosmos-1, skosmos-b-virtuoso-1, respectively. That way they will not conflict.
Reactions are currently unavailable