Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
S
slm-fileview
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
梁杰芳
slm-fileview
Commits
440b8030
Commit
440b8030
authored
Jun 17, 2019
by
陈精华
Committed by
kl
Jun 19, 2019
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
新增Docker构建
parent
fb7cdfbe
Show whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
64 additions
and
3 deletions
+64
-3
.gitignore
.gitignore
+3
-3
Dockerfile
Dockerfile
+31
-0
.gitkeep
fonts/.gitkeep
+0
-0
docker-startup.sh
jodconverter-web/src/main/bin/docker-startup.sh
+30
-0
No files found.
.gitignore
View file @
440b8030
...
...
@@ -38,5 +38,5 @@ nbdist/
/.temfile
.temfile
convertedFile/
jodconverter-web/src/main/file
jodconverter-web/src/main/cache
\ No newline at end of file
jodconverter-web/src/main/cache/
jodconverter-web/src/main/file/
\ No newline at end of file
Dockerfile
0 → 100644
View file @
440b8030
FROM
centos:centos7.6.1810
MAINTAINER
chenjh "842761733@qq.com"
ADD
jodconverter-web/target/kkFileView-*.tar.gz /opt/
COPY
fonts/* /usr/share/fonts/
RUN
yum
install
-y
kde-l10n-Chinese
&&
\
yum
install
-y
glibc-common
&&
\
yum
install
-y
fontconfig
&&
\
yum
install
-y
mkfontscale
&&
\
localedef
-c
-f
UTF-8
-i
zh_CN zh_CN.utf8
&&
\
export
LANG
=
zh_CN.UTF-8
&&
\
echo
"export LANG=zh_CN.UTF-8"
>>
/etc/locale.conf
&&
\
LANG
=
"zh_CN.UTF-8"
&&
\
yum
install
-y
java-1.8.0-openjdk.x86_64
&&
\
yum
install
-y
wget
&&
\
yum
install
-y
libXext.x86_64
&&
\
yum groupinstall
-y
"X Window System"
&&
\
cd
/tmp
&&
\
wget https://iweb.dl.sourceforge.net/project/openofficeorg.mirror/4.1.6/binaries/zh-CN/Apache_OpenOffice_4.1.6_Linux_x86-64_install-rpm_zh-CN.tar.gz
-cO
openoffice_rpm.tar.gz
&&
\
tar
zxf /tmp/openoffice_rpm.tar.gz
&&
\
cd
/tmp/zh-CN/RPMS
&&
\
rpm
-Uvih
*
.rpm
&&
\
rpm
-Uvih
desktop-integration/openoffice4.1.6-redhat-menus-4.1.6-9790.noarch.rpm
&&
\
rm
-f
/tmp/openoffice_rpm.tar.gz
&&
\
rm
-rf
/tmp/zh-CN
&&
\
cd
/usr/share/fonts
&&
\
mkfontscale
&&
\
mkfontdir
&&
\
fc-cache
-fv
ENV
LC_ALL zh_CN.UTF-8
CMD
sh /opt/kkFileView-2.1.0-SNAPSHOT/bin/docker-startup.sh
\ No newline at end of file
fonts/.gitkeep
0 → 100644
View file @
440b8030
jodconverter-web/src/main/bin/docker-startup.sh
0 → 100644
View file @
440b8030
#!/bin/bash
DIR_HOME
=(
"/opt/openoffice.org3"
"/opt/libreoffice"
"/opt/openoffice4"
"/usr/lib/openoffice"
"/usr/lib/libreoffice"
)
FLAG
=
OFFICE_HOME
=
KKFILEVIEW_BIN_FOLDER
=
$(
cd
"
$(
dirname
"
$0
"
)
"
;
pwd
)
export
KKFILEVIEW_BIN_FOLDER
=
$KKFILEVIEW_BIN_FOLDER
cd
$KKFILEVIEW_BIN_FOLDER
echo
"Using KKFILEVIEW_BIN_FOLDER
$KKFILEVIEW_BIN_FOLDER
"
grep
'office\.home'
../conf/application.properties |
grep
'!^#'
if
[
$?
-eq
0
]
;
then
echo
"Using customized office.home"
else
for
i
in
${
DIR_HOME
[@]
}
do
if
[
-f
$i
"/program/soffice.bin"
]
;
then
FLAG
=
true
OFFICE_HOME
=
${
i
}
break
fi
done
if
[
!
-n
"
${
FLAG
}
"
]
;
then
echo
"Installing OpenOffice"
sh ../script/install.sh
else
echo
"Detected office component has been installed in
$OFFICE_HOME
"
fi
fi
echo
"Starting kkFileView..."
java
-Dsun
.java2d.cmm
=
sun.java2d.cmm.kcms.KcmsServiceProvider
-Dspring
.config.location
=
../conf/application.properties
-jar
kkFileView-2.1.0-SNAPSHOT.jar
\ No newline at end of file
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment