Browse Source

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

pull/809/head
Cesar De la Torre 7 years ago
parent
commit
6ee4edcebb
4 changed files with 2 additions and 4 deletions
  1. +1
    -0
      cli-linux/build-bits-linux.sh
  2. +1
    -0
      cli-linux/docker-compose.local.build.yml
  3. +0
    -3
      cli-linux/prepare-spa-app.sh
  4. +0
    -1
      cli-linux/run.sh

+ 1
- 0
cli-linux/build-bits-linux.sh View File

@ -50,3 +50,4 @@ done
# 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.
#

+ 1
- 0
cli-linux/docker-compose.local.build.yml View File

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

+ 0
- 3
cli-linux/prepare-spa-app.sh View File

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

+ 0
- 1
cli-linux/run.sh View File

@ -4,4 +4,3 @@ docker rm $(docker ps -a -q)
docker images |grep -v REPOSITORY|awk '{print $1}'|xargs -L1 docker pull
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

Loading…
Cancel
Save