updates for new development env

This commit is contained in:
2021-04-30 15:22:16 -05:00
parent d64772bdfc
commit cf7f5d0f16
8 changed files with 15 additions and 9 deletions
-1
View File
@@ -39,4 +39,3 @@ EXPOSE $FAYE_PORT
#CMD thin start -R config.ru -p $FAYE_PORT
CMD thin start -R config.ru -p $FAYE_PORT --ssl --ssl-key-file=ssl/privkey.pem --ssl-cert-file=ssl/fullchain.pem
+2
View File
@@ -47,8 +47,10 @@ docker build -f faye/Dockerfile -t mozo_faye .
# 5. Spin up the counter container from the generated image
if [ $arch == "Darwin" ]; then
echo "Running the created image using the Mac Darwin port exposing"
docker run -p 9296:9296 --restart unless-stopped --detach --name=mozo_faye mozo_faye
else
echo "Running the created image using network=host"
docker run --network=host --restart unless-stopped --detach --name=mozo_faye mozo_faye
fi