mirror of
https://github.com/jc21/nginx-proxy-manager.git
synced 2024-08-30 18:22:48 +00:00
Path changes
This commit is contained in:
parent
4148f5a50c
commit
f9c003ad1f
12
Jenkinsfile
vendored
12
Jenkinsfile
vendored
@ -24,10 +24,10 @@ pipeline {
|
|||||||
steps {
|
steps {
|
||||||
ansiColor('xterm') {
|
ansiColor('xterm') {
|
||||||
// Codebase
|
// Codebase
|
||||||
sh 'docker run --rm -v $(pwd):/srv/app -w /srv/app $BASE_IMAGE_NAME:latest yarn --registry=$NPM_REGISTRY install'
|
sh 'docker run --rm -v $(pwd):/app -w /app $BASE_IMAGE_NAME:latest yarn --registry=$NPM_REGISTRY install'
|
||||||
sh 'docker run --rm -v $(pwd):/srv/app -w /srv/app $BASE_IMAGE_NAME:latest npm run-script build'
|
sh 'docker run --rm -v $(pwd):/app -w /app $BASE_IMAGE_NAME:latest npm run-script build'
|
||||||
sh 'rm -rf node_modules'
|
sh 'rm -rf node_modules'
|
||||||
sh 'docker run --rm -v $(pwd):/srv/app -w /srv/app $BASE_IMAGE_NAME:latest yarn --registry=$NPM_REGISTRY install --prod'
|
sh 'docker run --rm -v $(pwd):/app -w /app $BASE_IMAGE_NAME:latest yarn --registry=$NPM_REGISTRY install --prod'
|
||||||
sh 'docker run --rm -v $(pwd):/data $DOCKER_CI_TOOLS node-prune'
|
sh 'docker run --rm -v $(pwd):/data $DOCKER_CI_TOOLS node-prune'
|
||||||
|
|
||||||
// Docker Build
|
// Docker Build
|
||||||
@ -56,10 +56,10 @@ pipeline {
|
|||||||
steps {
|
steps {
|
||||||
ansiColor('xterm') {
|
ansiColor('xterm') {
|
||||||
// Codebase
|
// Codebase
|
||||||
sh 'docker run --rm -v $(pwd):/srv/app -w /srv/app $BASE_IMAGE_NAME:armhf yarn --registry=$NPM_REGISTRY install'
|
sh 'docker run --rm -v $(pwd):/app -w /app $BASE_IMAGE_NAME:armhf yarn --registry=$NPM_REGISTRY install'
|
||||||
sh 'docker run --rm -v $(pwd):/srv/app -w /srv/app $BASE_IMAGE_NAME:armhf npm run-script build'
|
sh 'docker run --rm -v $(pwd):/app -w /app $BASE_IMAGE_NAME:armhf npm run-script build'
|
||||||
sh 'rm -rf node_modules'
|
sh 'rm -rf node_modules'
|
||||||
sh 'docker run --rm -v $(pwd):/srv/app -w /srv/app $BASE_IMAGE_NAME:armhf yarn --registry=$NPM_REGISTRY install --prod'
|
sh 'docker run --rm -v $(pwd):/app -w /app $BASE_IMAGE_NAME:armhf yarn --registry=$NPM_REGISTRY install --prod'
|
||||||
|
|
||||||
// Docker Build
|
// Docker Build
|
||||||
sh 'docker build --pull --no-cache --squash --compress -t $TEMP_IMAGE_NAME_ARM -f Dockerfile.armhf .'
|
sh 'docker build --pull --no-cache --squash --compress -t $TEMP_IMAGE_NAME_ARM -f Dockerfile.armhf .'
|
||||||
|
20
bin/gulp
20
bin/gulp
@ -1,20 +0,0 @@
|
|||||||
#!/bin/bash
|
|
||||||
|
|
||||||
SCRIPT_DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"
|
|
||||||
if hash realpath 2>/dev/null; then
|
|
||||||
export CODEBASE=$(realpath $SCRIPT_DIR/..)
|
|
||||||
elif hash grealpath 2>/dev/null; then
|
|
||||||
export CODEBASE=$(grealpath $SCRIPT_DIR/..)
|
|
||||||
else
|
|
||||||
export CODEBASE=$(readlink -e $SCRIPT_DIR/..)
|
|
||||||
fi
|
|
||||||
|
|
||||||
if [ -z "$CODEBASE" ]; then
|
|
||||||
echo "Unable to determine absolute codebase directory"
|
|
||||||
exit 1
|
|
||||||
fi
|
|
||||||
|
|
||||||
cd "$CODEBASE"
|
|
||||||
|
|
||||||
/usr/local/bin/docker-compose run --no-deps --rm -w /srv/manager app gulp $@
|
|
||||||
exit $?
|
|
@ -1,7 +1,7 @@
|
|||||||
version: "2"
|
version: "2"
|
||||||
services:
|
services:
|
||||||
app:
|
app:
|
||||||
image: jc21/node
|
image: jc21/nginx-proxy-manager-base:latest
|
||||||
ports:
|
ports:
|
||||||
- 8080:80
|
- 8080:80
|
||||||
- 8081:81
|
- 8081:81
|
||||||
@ -11,7 +11,8 @@ services:
|
|||||||
- FORCE_COLOR=1
|
- FORCE_COLOR=1
|
||||||
volumes:
|
volumes:
|
||||||
- ./data/letsencrypt:/etc/letsencrypt
|
- ./data/letsencrypt:/etc/letsencrypt
|
||||||
- .:/srv/app
|
- .:/app
|
||||||
|
working_dir: /app
|
||||||
depends_on:
|
depends_on:
|
||||||
- db
|
- db
|
||||||
links:
|
links:
|
||||||
@ -27,5 +28,3 @@ services:
|
|||||||
volumes:
|
volumes:
|
||||||
- ./config/my.cnf:/etc/mysql/conf.d/npm.cnf
|
- ./config/my.cnf:/etc/mysql/conf.d/npm.cnf
|
||||||
- ./data/mysql:/var/lib/mysql
|
- ./data/mysql:/var/lib/mysql
|
||||||
- ./data/initial-sql:/docker-entrypoint-initdb.d
|
|
||||||
|
|
||||||
|
10
nodemon.json
10
nodemon.json
@ -1,5 +1,9 @@
|
|||||||
{
|
{
|
||||||
"verbose": false,
|
"verbose": false,
|
||||||
"ignore": ["dist", "data", "src/frontend"],
|
"ignore": [
|
||||||
"ext": "js json ejs"
|
"dist",
|
||||||
|
"data",
|
||||||
|
"src/frontend"
|
||||||
|
],
|
||||||
|
"ext": "js json ejs"
|
||||||
}
|
}
|
||||||
|
@ -2,5 +2,6 @@
|
|||||||
|
|
||||||
mkdir -p /data/letsencrypt-acme-challenge
|
mkdir -p /data/letsencrypt-acme-challenge
|
||||||
|
|
||||||
cd /srv/app
|
cd /app
|
||||||
node --abort_on_uncaught_exception --max_old_space_size=250 /app/src/backend/index.js
|
node --abort_on_uncaught_exception --max_old_space_size=250 /app/src/backend/index.js
|
||||||
|
|
||||||
|
@ -107,7 +107,7 @@ module.exports = {
|
|||||||
from: 'src/frontend/app-images',
|
from: 'src/frontend/app-images',
|
||||||
to: 'images',
|
to: 'images',
|
||||||
toType: 'dir',
|
toType: 'dir',
|
||||||
context: '/srv/app'
|
context: '/app'
|
||||||
}]),
|
}]),
|
||||||
new webpack.optimize.LimitChunkCountPlugin({
|
new webpack.optimize.LimitChunkCountPlugin({
|
||||||
maxChunks: 1, // Must be greater than or equal to one
|
maxChunks: 1, // Must be greater than or equal to one
|
||||||
|
Loading…
Reference in New Issue
Block a user