automated terminal push
All checks were successful
learn org at code.softwareshinobi.com/linux.softwareshinobi.com/pipeline/head This commit looks good
All checks were successful
learn org at code.softwareshinobi.com/linux.softwareshinobi.com/pipeline/head This commit looks good
This commit is contained in:
11
.dockerignore
Normal file
11
.dockerignore
Normal file
@@ -0,0 +1,11 @@
|
|||||||
|
.git
|
||||||
|
|
||||||
|
.pristine
|
||||||
|
|
||||||
|
.trash
|
||||||
|
|
||||||
|
.recycle
|
||||||
|
|
||||||
|
.backup
|
||||||
|
|
||||||
|
.template
|
||||||
0
.gitignore
vendored
Normal file
0
.gitignore
vendored
Normal file
13
Dockerfile
Normal file
13
Dockerfile
Normal file
@@ -0,0 +1,13 @@
|
|||||||
|
FROM titom73/mkdocs AS MKDOCS_BUILD
|
||||||
|
|
||||||
|
RUN pip install markupsafe==2.0.1
|
||||||
|
|
||||||
|
WORKDIR /docs
|
||||||
|
|
||||||
|
COPY . .
|
||||||
|
|
||||||
|
RUN mkdocs build
|
||||||
|
|
||||||
|
FROM mengzyou/bbhttpd:1.35
|
||||||
|
|
||||||
|
COPY --from=MKDOCS_BUILD --chown=www:www /docs/site /home/www/html
|
||||||
4
Jenkinsfile
vendored
4
Jenkinsfile
vendored
@@ -51,4 +51,6 @@ pipeline {
|
|||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
}}
|
}
|
||||||
|
|
||||||
|
}
|
||||||
|
|||||||
11
compose.bash
11
compose.bash
@@ -2,13 +2,18 @@
|
|||||||
|
|
||||||
##
|
##
|
||||||
|
|
||||||
set -e;
|
reset
|
||||||
|
|
||||||
set -x;
|
clear
|
||||||
|
|
||||||
|
##
|
||||||
|
|
||||||
|
set -e
|
||||||
|
|
||||||
|
set -x
|
||||||
|
|
||||||
##
|
##
|
||||||
|
|
||||||
docker compose down --remove-orphans
|
docker compose down --remove-orphans
|
||||||
|
|
||||||
docker compose up --build -d
|
docker compose up --build -d
|
||||||
|
|
||||||
|
|||||||
17
mkdocs.bash
Executable file
17
mkdocs.bash
Executable file
@@ -0,0 +1,17 @@
|
|||||||
|
#!/bin/bash
|
||||||
|
|
||||||
|
##
|
||||||
|
|
||||||
|
reset
|
||||||
|
|
||||||
|
clear
|
||||||
|
|
||||||
|
##
|
||||||
|
|
||||||
|
set -e
|
||||||
|
|
||||||
|
set -x
|
||||||
|
|
||||||
|
##
|
||||||
|
|
||||||
|
mkdocs serve
|
||||||
Reference in New Issue
Block a user