Merge branch 'dev' into 5941-send-to-support
gitea/salix/pipeline/head This commit looks good
Details
gitea/salix/pipeline/head This commit looks good
Details
This commit is contained in:
commit
7aee5bafff
|
@ -31,7 +31,6 @@ RUN sed -i -e 's/@mockDate/'"$MOCKDATE"'/g' mockDate.sql \
|
||||||
&& gosu mysql docker-structure.sh
|
&& gosu mysql docker-structure.sh
|
||||||
COPY changes ./changes
|
COPY changes ./changes
|
||||||
COPY dump/fixtures.sql ./
|
COPY dump/fixtures.sql ./
|
||||||
ARG STAMP=unknown
|
|
||||||
RUN gosu mysql docker-fixtures.sh
|
RUN gosu mysql docker-fixtures.sh
|
||||||
|
|
||||||
RUN echo "[INFO] -> Import finished" \
|
RUN echo "[INFO] -> Import finished" \
|
||||||
|
|
|
@ -1,4 +0,0 @@
|
||||||
/**
|
|
||||||
* Hay una versión en salix que machacará toda esta función/procedimiento avisa
|
|
||||||
* a ___ de los cambios que quieres hacer.
|
|
||||||
*/
|
|
|
@ -22,12 +22,8 @@ module.exports = class Docker {
|
||||||
* @param {String} networkName Name of the container network
|
* @param {String} networkName Name of the container network
|
||||||
*/
|
*/
|
||||||
async run(ci, networkName = 'jenkins') {
|
async run(ci, networkName = 'jenkins') {
|
||||||
let d = new Date();
|
|
||||||
let pad = v => v < 10 ? '0' + v : v;
|
|
||||||
let stamp = `${d.getFullYear()}-${pad(d.getMonth() + 1)}-${pad(d.getDate())}`;
|
|
||||||
|
|
||||||
log('Building container image...');
|
log('Building container image...');
|
||||||
await this.execP(`docker build --build-arg STAMP=${stamp} -t salix-db ./db`);
|
await this.execP(`docker build -t salix-db ./db`);
|
||||||
log('Image built.');
|
log('Image built.');
|
||||||
|
|
||||||
let dockerArgs;
|
let dockerArgs;
|
||||||
|
|
File diff suppressed because one or more lines are too long
|
@ -65,7 +65,6 @@ TABLES=(
|
||||||
sample
|
sample
|
||||||
state
|
state
|
||||||
ticketUpdateAction
|
ticketUpdateAction
|
||||||
time
|
|
||||||
volumeConfig
|
volumeConfig
|
||||||
workCenter
|
workCenter
|
||||||
companyI18n
|
companyI18n
|
||||||
|
|
Loading…
Reference in New Issue