You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
There is a typo in run-seyren.sh :
export MONGO_URL=mongodb://$MONGODB_PORT_27017_TCP_ADDR:$MONGODB_PORT_27017_TCP_PORT/seyren
should be
export MONGO_URL=mongodb://$MONGO_PORT_27017_TCP_ADDR:$MONGO_PORT_27017_TCP_PORT/seyren
in order for Seyren to start with Docker.
Note that $MONGODB_PORT_27017_TCP_ADDR should be /$MONGO_PORT_27017_TCP_ADDR and $MONGODB_PORT_27017_TCP_PORT should be $MONGO_PORT_27017_TCP_PORT
The text was updated successfully, but these errors were encountered:
This depends on what you link your container as. If you linked as mongo then the script will need to be changed. However if you link as mongodb then the current script works.
This depends on what you link your container as. If you linked as mongo
then the script will need to be changed. However if you link as mongodb
then the current script works.
Hi,
There is a typo in run-seyren.sh :
export MONGO_URL=mongodb://$MONGODB_PORT_27017_TCP_ADDR:$MONGODB_PORT_27017_TCP_PORT/seyren
should be
export MONGO_URL=mongodb://$MONGO_PORT_27017_TCP_ADDR:$MONGO_PORT_27017_TCP_PORT/seyren
in order for Seyren to start with Docker.
Note that $MONGODB_PORT_27017_TCP_ADDR should be /$MONGO_PORT_27017_TCP_ADDR and $MONGODB_PORT_27017_TCP_PORT should be $MONGO_PORT_27017_TCP_PORT
The text was updated successfully, but these errors were encountered: