Fixing Linux Script files to have UNIX line ending instead of WINDOWS. Somehow it was reverted.

This commit is contained in:
Cesar De la Torre 2017-08-06 12:32:44 -07:00
parent 7844fcc0d0
commit 6ee4edcebb
4 changed files with 2 additions and 4 deletions

View File

@ -50,3 +50,4 @@ done
# No need to build the images, docker build or docker compose will # No need to build the images, docker build or docker compose will
# do that using the images and containers defined in the docker-compose.yml file. # do that using the images and containers defined in the docker-compose.yml file.
#

View File

@ -7,3 +7,4 @@ services:
- .:/src - .:/src
working_dir: /src working_dir: /src
command: /bin/bash -c "chmod -x ./cli-linux/build-bits-linux.sh && ./cli-linux/build-bits-linux.sh" command: /bin/bash -c "chmod -x ./cli-linux/build-bits-linux.sh && ./cli-linux/build-bits-linux.sh"

View File

@ -1,7 +1,4 @@
# Build SPA app # Build SPA app
pushd $(pwd)/src/Web/WebSPA pushd $(pwd)/src/Web/WebSPA
npm rebuild node-sass npm rebuild node-sass
#npm run build:prod #npm run build:prod

View File

@ -4,4 +4,3 @@ docker rm $(docker ps -a -q)
docker images |grep -v REPOSITORY|awk '{print $1}'|xargs -L1 docker pull docker images |grep -v REPOSITORY|awk '{print $1}'|xargs -L1 docker pull
export ESHOP_PROD_EXTERNAL_DNS_NAME_OR_IP=$(curl ipinfo.io/ip) export ESHOP_PROD_EXTERNAL_DNS_NAME_OR_IP=$(curl ipinfo.io/ip)
docker-compose -f docker-compose.images.yml -f docker-compose.prod.yml up -d --force-recreate docker-compose -f docker-compose.images.yml -f docker-compose.prod.yml up -d --force-recreate