#814 Docker & test
This commit is contained in:
parent
535d98f485
commit
5241fac7de
10
Dockerfile
10
Dockerfile
|
@ -13,7 +13,7 @@ RUN apt-get update \
|
||||||
&& npm -g install pm2
|
&& npm -g install pm2
|
||||||
|
|
||||||
WORKDIR /salix
|
WORKDIR /salix
|
||||||
COPY package.json .
|
COPY package.json package-lock.json ./
|
||||||
COPY loopback/package.json loopback/
|
COPY loopback/package.json loopback/
|
||||||
RUN npm install --only=prod
|
RUN npm install --only=prod
|
||||||
|
|
||||||
|
@ -22,9 +22,9 @@ COPY back back
|
||||||
COPY modules modules
|
COPY modules modules
|
||||||
COPY dist/webpack-assets.json dist/
|
COPY dist/webpack-assets.json dist/
|
||||||
COPY \
|
COPY \
|
||||||
modules.yml \
|
modules.yml \
|
||||||
LICENSE \
|
LICENSE \
|
||||||
README.md \
|
README.md \
|
||||||
./
|
./
|
||||||
|
|
||||||
CMD pm2-docker ./loopback/server/server.js
|
CMD ["pm2-docker", "./loopback/server/server.js"]
|
||||||
|
|
|
@ -0,0 +1,92 @@
|
||||||
|
const url = require('url');
|
||||||
|
const md5 = require('md5');
|
||||||
|
|
||||||
|
module.exports = Self => {
|
||||||
|
Self.remoteMethod('login', {
|
||||||
|
description: 'Login a user with username/email and password',
|
||||||
|
accepts: [
|
||||||
|
{
|
||||||
|
arg: 'user',
|
||||||
|
type: 'String',
|
||||||
|
description: 'The user name or email',
|
||||||
|
required: true
|
||||||
|
}, {
|
||||||
|
arg: 'password',
|
||||||
|
type: 'String',
|
||||||
|
description: 'The user name or email',
|
||||||
|
required: true
|
||||||
|
}, {
|
||||||
|
arg: 'location',
|
||||||
|
type: 'String',
|
||||||
|
description: 'Location to redirect after login'
|
||||||
|
}
|
||||||
|
],
|
||||||
|
returns: {
|
||||||
|
type: 'object',
|
||||||
|
root: true
|
||||||
|
},
|
||||||
|
http: {
|
||||||
|
path: `/login`,
|
||||||
|
verb: 'POST'
|
||||||
|
}
|
||||||
|
});
|
||||||
|
|
||||||
|
Self.login = async function(user, password, location) {
|
||||||
|
let token;
|
||||||
|
let usesEmail = user.indexOf('@') !== -1;
|
||||||
|
let User = Self.app.models.User;
|
||||||
|
|
||||||
|
let loginInfo = {password};
|
||||||
|
|
||||||
|
if (usesEmail)
|
||||||
|
loginInfo.email = user;
|
||||||
|
else
|
||||||
|
loginInfo.username = user;
|
||||||
|
|
||||||
|
try {
|
||||||
|
token = await User.login(loginInfo, 'user');
|
||||||
|
} catch (err) {
|
||||||
|
if (err.code != 'LOGIN_FAILED' || usesEmail)
|
||||||
|
throw err;
|
||||||
|
|
||||||
|
let filter = {where: {name: user}};
|
||||||
|
let instance = await Self.findOne(filter);
|
||||||
|
|
||||||
|
if (!instance || instance.password !== md5(password))
|
||||||
|
throw err;
|
||||||
|
|
||||||
|
let where = {id: instance.id};
|
||||||
|
let userData = {
|
||||||
|
id: instance.id,
|
||||||
|
username: user,
|
||||||
|
password: password,
|
||||||
|
email: instance.email,
|
||||||
|
created: instance.created,
|
||||||
|
updated: instance.updated
|
||||||
|
};
|
||||||
|
await User.upsertWithWhere(where, userData);
|
||||||
|
token = await User.login(loginInfo, 'user');
|
||||||
|
}
|
||||||
|
|
||||||
|
let apiKey;
|
||||||
|
let continueUrl;
|
||||||
|
|
||||||
|
try {
|
||||||
|
let query = url.parse(location, true).query;
|
||||||
|
apiKey = query.apiKey;
|
||||||
|
continueUrl = query.continue;
|
||||||
|
} catch (e) {
|
||||||
|
continueUrl = null;
|
||||||
|
}
|
||||||
|
|
||||||
|
let applications = Self.app.get('applications');
|
||||||
|
if (!apiKey) apiKey = 'default';
|
||||||
|
let loginUrl = applications[apiKey] || '/login';
|
||||||
|
|
||||||
|
return {
|
||||||
|
token: token.id,
|
||||||
|
continue: continueUrl,
|
||||||
|
loginUrl: loginUrl
|
||||||
|
};
|
||||||
|
};
|
||||||
|
};
|
|
@ -0,0 +1,25 @@
|
||||||
|
module.exports = Self => {
|
||||||
|
Self.remoteMethod('logout', {
|
||||||
|
description: 'Logout a user with access token',
|
||||||
|
accepts: [
|
||||||
|
{
|
||||||
|
arg: 'ctx',
|
||||||
|
type: 'Object',
|
||||||
|
http: {source: 'context'}
|
||||||
|
}
|
||||||
|
],
|
||||||
|
returns: {
|
||||||
|
type: 'Boolean',
|
||||||
|
root: true
|
||||||
|
},
|
||||||
|
http: {
|
||||||
|
path: `/logout`,
|
||||||
|
verb: 'POST'
|
||||||
|
}
|
||||||
|
});
|
||||||
|
|
||||||
|
Self.logout = async function(ctx) {
|
||||||
|
await Self.app.models.User.logout(ctx.req.accessToken.id);
|
||||||
|
return true;
|
||||||
|
};
|
||||||
|
};
|
|
@ -1,6 +1,9 @@
|
||||||
const md5 = require('md5');
|
const md5 = require('md5');
|
||||||
|
|
||||||
module.exports = Self => {
|
module.exports = Self => {
|
||||||
|
require('../methods/account/login')(Self);
|
||||||
|
require('../methods/account/logout')(Self);
|
||||||
|
|
||||||
// Validations
|
// Validations
|
||||||
|
|
||||||
Self.validatesUniquenessOf('name', {
|
Self.validatesUniquenessOf('name', {
|
||||||
|
|
|
@ -31,5 +31,20 @@
|
||||||
"updated": {
|
"updated": {
|
||||||
"type": "date"
|
"type": "date"
|
||||||
}
|
}
|
||||||
}
|
},
|
||||||
|
"acls": [
|
||||||
|
{
|
||||||
|
"property": "login",
|
||||||
|
"accessType": "EXECUTE",
|
||||||
|
"principalType": "ROLE",
|
||||||
|
"principalId": "$everyone",
|
||||||
|
"permission": "ALLOW"
|
||||||
|
}, {
|
||||||
|
"property": "logout",
|
||||||
|
"accessType": "EXECUTE",
|
||||||
|
"principalType": "ROLE",
|
||||||
|
"principalId": "$authenticated",
|
||||||
|
"permission": "ALLOW"
|
||||||
|
}
|
||||||
|
]
|
||||||
}
|
}
|
||||||
|
|
|
@ -11,20 +11,20 @@ let verbose = false;
|
||||||
if (process.argv[2] === '--v')
|
if (process.argv[2] === '--v')
|
||||||
verbose = true;
|
verbose = true;
|
||||||
|
|
||||||
serviceRoot = `${__dirname}/loopback`;
|
serviceRoot = `${__dirname}/../loopback`;
|
||||||
|
|
||||||
let Jasmine = require('jasmine');
|
let Jasmine = require('jasmine');
|
||||||
let jasmine = new Jasmine();
|
let jasmine = new Jasmine();
|
||||||
let SpecReporter = require('jasmine-spec-reporter').SpecReporter;
|
let SpecReporter = require('jasmine-spec-reporter').SpecReporter;
|
||||||
|
|
||||||
let serviceSpecs = [
|
let serviceSpecs = [
|
||||||
'loopback/**/*[sS]pec.js',
|
'./loopback/**/*[sS]pec.js',
|
||||||
'back/**/*[sS]pec.js'
|
'./back/**/*[sS]pec.js'
|
||||||
];
|
];
|
||||||
|
|
||||||
let services = require(`./modules.yml`);
|
let services = require(`../modules.yml`);
|
||||||
for (let service of services)
|
for (let service of services)
|
||||||
serviceSpecs.push(`modules/${service}/back/**/*[sS]pec.js`);
|
serviceSpecs.push(`./modules/${service}/back/**/*[sS]pec.js`);
|
||||||
|
|
||||||
jasmine.loadConfig({
|
jasmine.loadConfig({
|
||||||
spec_dir: '.',
|
spec_dir: '.',
|
|
@ -13,7 +13,7 @@ services:
|
||||||
api:
|
api:
|
||||||
build: .
|
build: .
|
||||||
environment:
|
environment:
|
||||||
NODE_ENV: ${NODE_ENV}
|
- NODE_ENV
|
||||||
restart: unless-stopped
|
restart: unless-stopped
|
||||||
image: salix-api:${BRANCH_NAME}
|
image: salix-api:${BRANCH_NAME}
|
||||||
volumes:
|
volumes:
|
||||||
|
|
|
@ -8,10 +8,9 @@ process.on('warning', warning => {
|
||||||
|
|
||||||
let verbose = false;
|
let verbose = false;
|
||||||
|
|
||||||
if (process.argv[2] === '--v')
|
if (process.argv[2] === '--v')
|
||||||
verbose = true;
|
verbose = true;
|
||||||
|
|
||||||
|
|
||||||
let Jasmine = require('jasmine');
|
let Jasmine = require('jasmine');
|
||||||
let jasmine = new Jasmine();
|
let jasmine = new Jasmine();
|
||||||
let SpecReporter = require('jasmine-spec-reporter').SpecReporter;
|
let SpecReporter = require('jasmine-spec-reporter').SpecReporter;
|
35
gulpfile.js
35
gulpfile.js
|
@ -395,31 +395,16 @@ gulp.task('watch', function() {
|
||||||
*/
|
*/
|
||||||
gulp.task('docker', async() => {
|
gulp.task('docker', async() => {
|
||||||
try {
|
try {
|
||||||
await execP('docker rm -fv dblocal');
|
await execP('docker rm -fv salix-db');
|
||||||
} catch (e) {}
|
|
||||||
|
|
||||||
await runSequenceP('docker-run');
|
|
||||||
});
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Rebuilds the docker image, if already exists, destroys and
|
|
||||||
* rebuild it. calls upon docker task afterwards.
|
|
||||||
*/
|
|
||||||
gulp.task('docker-build', async() => {
|
|
||||||
try {
|
|
||||||
await execP('docker rm -fv dblocal');
|
|
||||||
} catch (e) {}
|
|
||||||
try {
|
|
||||||
await execP('docker rmi dblocal:latest');
|
|
||||||
} catch (e) {}
|
} catch (e) {}
|
||||||
try {
|
try {
|
||||||
await execP('docker volume rm data');
|
await execP('docker volume rm data');
|
||||||
} catch (e) {}
|
} catch (e) {}
|
||||||
|
|
||||||
log('Building image...');
|
log('Building image...');
|
||||||
await execP('docker build -t dblocal:latest ./services/db');
|
await execP('docker build -t salix-db:latest ./services/db');
|
||||||
|
|
||||||
await runSequenceP('docker');
|
await runSequenceP('docker-run');
|
||||||
});
|
});
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
@ -431,7 +416,7 @@ gulp.task('docker-build', async() => {
|
||||||
gulp.task('docker-start', async() => {
|
gulp.task('docker-start', async() => {
|
||||||
let state;
|
let state;
|
||||||
try {
|
try {
|
||||||
let result = await execP('docker container inspect -f "{{json .State}}" dblocal');
|
let result = await execP('docker container inspect -f "{{json .State}}" salix-db');
|
||||||
state = JSON.parse(result.stdout);
|
state = JSON.parse(result.stdout);
|
||||||
} catch (err) {
|
} catch (err) {
|
||||||
return await runSequenceP('docker-run');
|
return await runSequenceP('docker-run');
|
||||||
|
@ -441,7 +426,9 @@ gulp.task('docker-start', async() => {
|
||||||
case 'running':
|
case 'running':
|
||||||
return;
|
return;
|
||||||
case 'exited':
|
case 'exited':
|
||||||
return await execP('docker start dblocal');
|
await execP('docker start salix-db');
|
||||||
|
await runSequenceP('docker-wait');
|
||||||
|
return;
|
||||||
default:
|
default:
|
||||||
throw new Error(`Unknown docker status: ${status}`);
|
throw new Error(`Unknown docker status: ${status}`);
|
||||||
}
|
}
|
||||||
|
@ -452,11 +439,11 @@ gulp.task('docker-start', async() => {
|
||||||
*/
|
*/
|
||||||
gulp.task('docker-run', async() => {
|
gulp.task('docker-run', async() => {
|
||||||
try {
|
try {
|
||||||
await execP('docker image inspect -f "{{json .Id}}" dblocal');
|
await execP('docker image inspect -f "{{json .Id}}" salix-db');
|
||||||
await execP('docker run -d --name dblocal --volume data:/data -p 3306:3306 dblocal');
|
await execP('docker run -d --name salix-db --volume ./dist/salix-db:/data -p 3306:3306 salix-db');
|
||||||
await runSequenceP('docker-wait');
|
await runSequenceP('docker-wait');
|
||||||
} catch (err) {
|
} catch (err) {
|
||||||
await runSequenceP('docker-build');
|
await runSequenceP('docker');
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
|
||||||
|
@ -478,7 +465,7 @@ gulp.task('docker-wait', callback => {
|
||||||
let state;
|
let state;
|
||||||
|
|
||||||
try {
|
try {
|
||||||
let result = await execP('docker container inspect -f "{{json .State}}" dblocal');
|
let result = await execP('docker container inspect -f "{{json .State}}" salix-db');
|
||||||
state = JSON.parse(result.stdout);
|
state = JSON.parse(result.stdout);
|
||||||
} catch (err) {
|
} catch (err) {
|
||||||
return callback(new Error(err.message));
|
return callback(new Error(err.message));
|
||||||
|
|
|
@ -22,7 +22,7 @@ module.exports = function(config) {
|
||||||
|
|
||||||
// list of files / patterns to load in the browser
|
// list of files / patterns to load in the browser
|
||||||
files: [
|
files: [
|
||||||
{pattern: 'front/test_index.js', watched: false}
|
{pattern: 'front/test-index.js', watched: false}
|
||||||
],
|
],
|
||||||
|
|
||||||
// list of files to exclude
|
// list of files to exclude
|
||||||
|
@ -41,7 +41,7 @@ module.exports = function(config) {
|
||||||
// preprocess matching files before serving them to the browser
|
// preprocess matching files before serving them to the browser
|
||||||
// available preprocessors: https://npmjs.org/browse/keyword/karma-preprocessor
|
// available preprocessors: https://npmjs.org/browse/keyword/karma-preprocessor
|
||||||
preprocessors: {
|
preprocessors: {
|
||||||
'./front/test_index.js': ['webpack', 'sourcemap']
|
'./front/test-index.js': ['webpack', 'sourcemap']
|
||||||
},
|
},
|
||||||
|
|
||||||
// test results reporter to use
|
// test results reporter to use
|
||||||
|
|
|
@ -87,9 +87,9 @@
|
||||||
"url": "https://git.verdnatura.es/salix"
|
"url": "https://git.verdnatura.es/salix"
|
||||||
},
|
},
|
||||||
"scripts": {
|
"scripts": {
|
||||||
"test": "nodemon -q services_tests.js -w services",
|
"test": "nodemon -q back/tests.js -w modules",
|
||||||
"dbtest": "nodemon -q db_tests.js -w services/db/tests",
|
"dbtest": "nodemon -q services/db/tests.js -w services/db/tests",
|
||||||
"lint": "eslint ./ --cache --ignore-pattern .gitignore",
|
"services": "nodemon --inspect -w modules ./node_modules/gulp/bin/gulp.js services",
|
||||||
"services": "nodemon --inspect -w services ./node_modules/gulp/bin/gulp.js services"
|
"lint": "eslint ./ --cache --ignore-pattern .gitignore"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,12 +1,27 @@
|
||||||
FROM verdnatura/vn-mysql:latest
|
FROM mysql:5.6
|
||||||
|
|
||||||
ENV MYSQL_ROOT_PASSWORD root
|
ENV MYSQL_ROOT_PASSWORD root
|
||||||
ENV TZ=Europe/Madrid
|
ENV TZ Europe/Madrid
|
||||||
|
|
||||||
|
ARG DEBIAN_FRONTEND=noninteractive
|
||||||
|
RUN apt-get update \
|
||||||
|
&& apt-get install -y --no-install-recommends curl ca-certificates \
|
||||||
|
&& curl -L https://apt.verdnatura.es/conf/verdnatura.gpg | apt-key add - \
|
||||||
|
&& echo "deb http://apt.verdnatura.es/ jessie main" > /etc/apt/sources.list.d/vn.list \
|
||||||
|
&& apt-get update \
|
||||||
|
&& apt-get install -y vn-mysql
|
||||||
|
|
||||||
|
RUN cp /usr/local/bin/docker-entrypoint.sh /usr/local/bin/my-docker-entrypoint.sh \
|
||||||
|
&& sed -i '$ d' /usr/local/bin/my-docker-entrypoint.sh
|
||||||
|
|
||||||
WORKDIR /docker-entrypoint-initdb.d
|
WORKDIR /docker-entrypoint-initdb.d
|
||||||
COPY install ./
|
COPY install /docker-entrypoint-initdb.d
|
||||||
RUN chmod -R 777 .
|
RUN mkdir /mysql-data \
|
||||||
RUN mkdir /data
|
&& chmod 770 /mysql-data
|
||||||
RUN chmod 777 /data
|
|
||||||
CMD ["mysqld"]
|
RUN /usr/local/bin/my-docker-entrypoint.sh mysqld --datadir /mysql-data
|
||||||
|
|
||||||
|
CMD ["mysqld", "--datadir", "/mysql-data"]
|
||||||
|
|
||||||
#HEALTHCHECK --interval=5s --timeout=10s --retries=200 \
|
#HEALTHCHECK --interval=5s --timeout=10s --retries=200 \
|
||||||
# CMD mysqladmin ping -h 127.0.0.1 -u root || exit 1
|
# CMD mysqladmin ping -h 127.0.0.1 -u root || exit 1
|
||||||
EXPOSE 3306
|
|
|
@ -0,0 +1,189 @@
|
||||||
|
#!/bin/bash
|
||||||
|
set -eo pipefail
|
||||||
|
shopt -s nullglob
|
||||||
|
|
||||||
|
# if command starts with an option, prepend mysqld
|
||||||
|
if [ "${1:0:1}" = '-' ]; then
|
||||||
|
set -- mysqld "$@"
|
||||||
|
fi
|
||||||
|
|
||||||
|
# skip setup if they want an option that stops mysqld
|
||||||
|
wantHelp=
|
||||||
|
for arg; do
|
||||||
|
case "$arg" in
|
||||||
|
-'?'|--help|--print-defaults|-V|--version)
|
||||||
|
wantHelp=1
|
||||||
|
break
|
||||||
|
;;
|
||||||
|
esac
|
||||||
|
done
|
||||||
|
|
||||||
|
# usage: file_env VAR [DEFAULT]
|
||||||
|
# ie: file_env 'XYZ_DB_PASSWORD' 'example'
|
||||||
|
# (will allow for "$XYZ_DB_PASSWORD_FILE" to fill in the value of
|
||||||
|
# "$XYZ_DB_PASSWORD" from a file, especially for Docker's secrets feature)
|
||||||
|
file_env() {
|
||||||
|
local var="$1"
|
||||||
|
local fileVar="${var}_FILE"
|
||||||
|
local def="${2:-}"
|
||||||
|
if [ "${!var:-}" ] && [ "${!fileVar:-}" ]; then
|
||||||
|
echo >&2 "error: both $var and $fileVar are set (but are exclusive)"
|
||||||
|
exit 1
|
||||||
|
fi
|
||||||
|
local val="$def"
|
||||||
|
if [ "${!var:-}" ]; then
|
||||||
|
val="${!var}"
|
||||||
|
elif [ "${!fileVar:-}" ]; then
|
||||||
|
val="$(< "${!fileVar}")"
|
||||||
|
fi
|
||||||
|
export "$var"="$val"
|
||||||
|
unset "$fileVar"
|
||||||
|
}
|
||||||
|
|
||||||
|
_check_config() {
|
||||||
|
toRun=( "$@" --verbose --help --log-bin-index="$(mktemp -u)" )
|
||||||
|
if ! errors="$("${toRun[@]}" 2>&1 >/dev/null)"; then
|
||||||
|
cat >&2 <<-EOM
|
||||||
|
ERROR: mysqld failed while attempting to check config
|
||||||
|
command was: "${toRun[*]}"
|
||||||
|
$errors
|
||||||
|
EOM
|
||||||
|
exit 1
|
||||||
|
fi
|
||||||
|
}
|
||||||
|
|
||||||
|
# Fetch value from server config
|
||||||
|
# We use mysqld --verbose --help instead of my_print_defaults because the
|
||||||
|
# latter only show values present in config files, and not server defaults
|
||||||
|
_get_config() {
|
||||||
|
local conf="$1"; shift
|
||||||
|
"$@" --verbose --help --log-bin-index="$(mktemp -u)" 2>/dev/null \
|
||||||
|
| awk '$1 == "'"$conf"'" && /^[^ \t]/ { sub(/^[^ \t]+[ \t]+/, ""); print; exit }'
|
||||||
|
# match "datadir /some/path with/spaces in/it here" but not "--xyz=abc\n datadir (xyz)"
|
||||||
|
}
|
||||||
|
|
||||||
|
# allow the container to be started with `--user`
|
||||||
|
if [ "$1" = 'mysqld' -a -z "$wantHelp" -a "$(id -u)" = '0' ]; then
|
||||||
|
_check_config "$@"
|
||||||
|
DATADIR="$(_get_config 'datadir' "$@")"
|
||||||
|
mkdir -p "$DATADIR"
|
||||||
|
find "$DATADIR" \! -user mysql -exec chown mysql '{}' +
|
||||||
|
exec gosu mysql "$BASH_SOURCE" "$@"
|
||||||
|
fi
|
||||||
|
|
||||||
|
if [ "$1" = 'mysqld' -a -z "$wantHelp" ]; then
|
||||||
|
# still need to check config, container may have started with --user
|
||||||
|
_check_config "$@"
|
||||||
|
# Get config
|
||||||
|
DATADIR="$(_get_config 'datadir' "$@")"
|
||||||
|
|
||||||
|
if [ ! -d "$DATADIR/mysql" ]; then
|
||||||
|
file_env 'MYSQL_ROOT_PASSWORD'
|
||||||
|
if [ -z "$MYSQL_ROOT_PASSWORD" -a -z "$MYSQL_ALLOW_EMPTY_PASSWORD" -a -z "$MYSQL_RANDOM_ROOT_PASSWORD" ]; then
|
||||||
|
echo >&2 'error: database is uninitialized and password option is not specified '
|
||||||
|
echo >&2 ' You need to specify one of MYSQL_ROOT_PASSWORD, MYSQL_ALLOW_EMPTY_PASSWORD and MYSQL_RANDOM_ROOT_PASSWORD'
|
||||||
|
exit 1
|
||||||
|
fi
|
||||||
|
|
||||||
|
mkdir -p "$DATADIR"
|
||||||
|
|
||||||
|
echo 'Initializing database'
|
||||||
|
# "Other options are passed to mysqld." (so we pass all "mysqld" arguments directly here)
|
||||||
|
mysql_install_db --datadir="$DATADIR" --rpm "${@:2}"
|
||||||
|
echo 'Database initialized'
|
||||||
|
|
||||||
|
SOCKET="$(_get_config 'socket' "$@")"
|
||||||
|
"$@" --skip-networking --socket="${SOCKET}" &
|
||||||
|
pid="$!"
|
||||||
|
|
||||||
|
mysql=( mysql --protocol=socket -uroot -hlocalhost --socket="${SOCKET}" )
|
||||||
|
|
||||||
|
for i in {30..0}; do
|
||||||
|
if echo 'SELECT 1' | "${mysql[@]}" &> /dev/null; then
|
||||||
|
break
|
||||||
|
fi
|
||||||
|
echo 'MySQL init process in progress...'
|
||||||
|
sleep 1
|
||||||
|
done
|
||||||
|
if [ "$i" = 0 ]; then
|
||||||
|
echo >&2 'MySQL init process failed.'
|
||||||
|
exit 1
|
||||||
|
fi
|
||||||
|
|
||||||
|
if [ -z "$MYSQL_INITDB_SKIP_TZINFO" ]; then
|
||||||
|
# sed is for https://bugs.mysql.com/bug.php?id=20545
|
||||||
|
mysql_tzinfo_to_sql /usr/share/zoneinfo | sed 's/Local time zone must be set--see zic manual page/FCTY/' | "${mysql[@]}" mysql
|
||||||
|
fi
|
||||||
|
|
||||||
|
if [ ! -z "$MYSQL_RANDOM_ROOT_PASSWORD" ]; then
|
||||||
|
export MYSQL_ROOT_PASSWORD="$(pwgen -1 32)"
|
||||||
|
echo "GENERATED ROOT PASSWORD: $MYSQL_ROOT_PASSWORD"
|
||||||
|
fi
|
||||||
|
|
||||||
|
rootCreate=
|
||||||
|
# default root to listen for connections from anywhere
|
||||||
|
file_env 'MYSQL_ROOT_HOST' '%'
|
||||||
|
if [ ! -z "$MYSQL_ROOT_HOST" -a "$MYSQL_ROOT_HOST" != 'localhost' ]; then
|
||||||
|
# no, we don't care if read finds a terminating character in this heredoc
|
||||||
|
# https://unix.stackexchange.com/questions/265149/why-is-set-o-errexit-breaking-this-read-heredoc-expression/265151#265151
|
||||||
|
read -r -d '' rootCreate <<-EOSQL || true
|
||||||
|
CREATE USER 'root'@'${MYSQL_ROOT_HOST}' IDENTIFIED BY '${MYSQL_ROOT_PASSWORD}' ;
|
||||||
|
GRANT ALL ON *.* TO 'root'@'${MYSQL_ROOT_HOST}' WITH GRANT OPTION ;
|
||||||
|
EOSQL
|
||||||
|
fi
|
||||||
|
|
||||||
|
"${mysql[@]}" <<-EOSQL
|
||||||
|
-- What's done in this file shouldn't be replicated
|
||||||
|
-- or products like mysql-fabric won't work
|
||||||
|
SET @@SESSION.SQL_LOG_BIN=0;
|
||||||
|
DELETE FROM mysql.user WHERE user NOT IN ('mysql.sys', 'mysqlxsys', 'root') OR host NOT IN ('localhost') ;
|
||||||
|
SET PASSWORD FOR 'root'@'localhost'=PASSWORD('${MYSQL_ROOT_PASSWORD}') ;
|
||||||
|
GRANT ALL ON *.* TO 'root'@'localhost' WITH GRANT OPTION ;
|
||||||
|
${rootCreate}
|
||||||
|
DROP DATABASE IF EXISTS test ;
|
||||||
|
FLUSH PRIVILEGES ;
|
||||||
|
EOSQL
|
||||||
|
|
||||||
|
if [ ! -z "$MYSQL_ROOT_PASSWORD" ]; then
|
||||||
|
mysql+=( -p"${MYSQL_ROOT_PASSWORD}" )
|
||||||
|
fi
|
||||||
|
|
||||||
|
file_env 'MYSQL_DATABASE'
|
||||||
|
if [ "$MYSQL_DATABASE" ]; then
|
||||||
|
echo "CREATE DATABASE IF NOT EXISTS \`$MYSQL_DATABASE\` ;" | "${mysql[@]}"
|
||||||
|
mysql+=( "$MYSQL_DATABASE" )
|
||||||
|
fi
|
||||||
|
|
||||||
|
file_env 'MYSQL_USER'
|
||||||
|
file_env 'MYSQL_PASSWORD'
|
||||||
|
if [ "$MYSQL_USER" -a "$MYSQL_PASSWORD" ]; then
|
||||||
|
echo "CREATE USER '$MYSQL_USER'@'%' IDENTIFIED BY '$MYSQL_PASSWORD' ;" | "${mysql[@]}"
|
||||||
|
|
||||||
|
if [ "$MYSQL_DATABASE" ]; then
|
||||||
|
echo "GRANT ALL ON \`$MYSQL_DATABASE\`.* TO '$MYSQL_USER'@'%' ;" | "${mysql[@]}"
|
||||||
|
fi
|
||||||
|
fi
|
||||||
|
|
||||||
|
echo
|
||||||
|
for f in /docker-entrypoint-initdb.d/*; do
|
||||||
|
case "$f" in
|
||||||
|
*.sh) echo "$0: running $f"; . "$f" ;;
|
||||||
|
*.sql) echo "$0: running $f"; "${mysql[@]}" < "$f"; echo ;;
|
||||||
|
*.sql.gz) echo "$0: running $f"; gunzip -c "$f" | "${mysql[@]}"; echo ;;
|
||||||
|
*) echo "$0: ignoring $f" ;;
|
||||||
|
esac
|
||||||
|
echo
|
||||||
|
done
|
||||||
|
|
||||||
|
if ! kill -s TERM "$pid" || ! wait "$pid"; then
|
||||||
|
echo >&2 'MySQL init process failed.'
|
||||||
|
exit 1
|
||||||
|
fi
|
||||||
|
|
||||||
|
echo
|
||||||
|
echo 'MySQL init process done. Ready for start up.'
|
||||||
|
echo
|
||||||
|
fi
|
||||||
|
fi
|
||||||
|
|
||||||
|
exec "$@"
|
|
@ -1,32 +1,24 @@
|
||||||
#!/bin/bash
|
#!/bin/bash
|
||||||
export MYSQL_PWD=root
|
export MYSQL_PWD=root
|
||||||
|
|
||||||
if [ -d /data/mysql ]; then
|
# Dump structure
|
||||||
cp -R /data/mysql /var/lib
|
echo "[INFO] -> Imported ./dump/truncateAll.sql"
|
||||||
echo "[INFO] -> Restored database to default state"
|
mysql -u root -f < ./dump/truncateAll.sql
|
||||||
else
|
echo "[INFO] -> Imported ./dump/structure.sql"
|
||||||
# Dump structure
|
mysql -u root -f < ./dump/structure.sql
|
||||||
echo "[INFO] -> Imported ./dump/truncateAll.sql"
|
echo "[INFO] -> Imported ./dump/mysqlPlugins.sql"
|
||||||
mysql -u root -f < ./dump/truncateAll.sql
|
mysql -u root -f < ./dump/mysqlPlugins.sql
|
||||||
echo "[INFO] -> Imported ./dump/structure.sql"
|
|
||||||
mysql -u root -f < ./dump/structure.sql
|
|
||||||
echo "[INFO] -> Imported ./dump/mysqlPlugins.sql"
|
|
||||||
mysql -u root -f < ./dump/mysqlPlugins.sql
|
|
||||||
|
|
||||||
# Import changes
|
# Import changes
|
||||||
for file in changes/*/*.sql; do
|
for file in changes/*/*.sql; do
|
||||||
echo "[INFO] -> Imported ./$file"
|
echo "[INFO] -> Imported ./$file"
|
||||||
mysql -u root -fc < $file
|
mysql -u root -fc < $file
|
||||||
done
|
done
|
||||||
|
|
||||||
# Import fixtures
|
# Import fixtures
|
||||||
echo "[INFO] -> Imported ./dump/dumpedFixtures.sql"
|
echo "[INFO] -> Imported ./dump/dumpedFixtures.sql"
|
||||||
mysql -u root -f < ./dump/dumpedFixtures.sql
|
mysql -u root -f < ./dump/dumpedFixtures.sql
|
||||||
echo "[INFO] -> Imported ./dump/fixtures.sql"
|
echo "[INFO] -> Imported ./dump/fixtures.sql"
|
||||||
mysql -u root -f < ./dump/fixtures.sql
|
mysql -u root -f < ./dump/fixtures.sql
|
||||||
|
|
||||||
# Copy dumpted data to volume
|
echo "[INFO] -> Dumped database"
|
||||||
cp -R /var/lib/mysql /data
|
|
||||||
|
|
||||||
echo "[INFO] -> Dumped database"
|
|
||||||
fi
|
|
||||||
|
|
|
@ -9,14 +9,14 @@ let verbose = false;
|
||||||
if (process.argv[2] === '--v')
|
if (process.argv[2] === '--v')
|
||||||
verbose = true;
|
verbose = true;
|
||||||
|
|
||||||
loopbackApp = `${__dirname}/loopback/server/server`;
|
serviceRoot = __dirname;
|
||||||
|
|
||||||
let Jasmine = require('jasmine');
|
let Jasmine = require('jasmine');
|
||||||
let jasmine = new Jasmine();
|
let jasmine = new Jasmine();
|
||||||
let SpecReporter = require('jasmine-spec-reporter').SpecReporter;
|
let SpecReporter = require('jasmine-spec-reporter').SpecReporter;
|
||||||
|
|
||||||
let serviceSpecs = [
|
let serviceSpecs = [
|
||||||
'db/tests/**/*[sS]pec.js'
|
'./db/tests/**/*[sS]pec.js'
|
||||||
];
|
];
|
||||||
|
|
||||||
jasmine.loadConfig({
|
jasmine.loadConfig({
|
|
@ -7,13 +7,13 @@ RUN apt-get update \
|
||||||
&& apt-get install -y apt-utils \
|
&& apt-get install -y apt-utils \
|
||||||
&& apt-get install -y --no-install-recommends nginx
|
&& apt-get install -y --no-install-recommends nginx
|
||||||
|
|
||||||
|
RUN ln -sf /dev/stdout /var/log/nginx/access.log \
|
||||||
|
&& ln -sf /dev/stderr /var/log/nginx/error.log
|
||||||
|
|
||||||
WORKDIR /etc/nginx
|
WORKDIR /etc/nginx
|
||||||
COPY services/nginx/temp/nginx.conf sites-available/salix
|
COPY services/nginx/temp/nginx.conf sites-available/salix
|
||||||
RUN rm sites-enabled/default && ln -s ../sites-available/salix sites-enabled/salix
|
RUN rm sites-enabled/default && ln -s ../sites-available/salix sites-enabled/salix
|
||||||
|
|
||||||
RUN ln -sf /dev/stdout /var/log/nginx/access.log \
|
|
||||||
&& ln -sf /dev/stderr /var/log/nginx/error.log
|
|
||||||
|
|
||||||
COPY dist /salix/dist
|
COPY dist /salix/dist
|
||||||
|
|
||||||
CMD ["nginx", "-g", "daemon off;"]
|
CMD ["nginx", "-g", "daemon off;"]
|
||||||
|
|
Loading…
Reference in New Issue