Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Q
qg-dockerfiles
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Boards
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
QA
qg-dockerfiles
Commits
b1766186
Commit
b1766186
authored
Jan 04, 2018
by
daidekun
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
移除荣誉dockerfile
parent
8863fba7
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
0 additions
and
52 deletions
+0
-52
Dockerfile
baseimg/dns/Dockerfile
+0
-17
Dockerfile
baseimg/eureka/Dockerfile
+0
-21
docker-entrypoint.sh
baseimg/eureka/docker-entrypoint.sh
+0
-7
Dockerfile
baseimg/python/Dockerfile
+0
-7
No files found.
baseimg/dns/Dockerfile
deleted
100644 → 0
View file @
8863fba7
FROM
192.168.4.36/baseimg/jdk8
MAINTAINER
ag "xiaoguang.xu@quantgroup.cn"
#安装必要工具
RUN
apt-get
install
-y
bind-tools
\
&&
apt-get
install
-y
ca-certificates
\
&&
apt-get
install
-y
openssl
\
&&
apt-get
install
-y
update-ca-certificates
\
# only need ca-certificates & openssl if want to use https_google
#RUN apk --update add bind-tools ca-certificates openssl && update-ca-certificates && rm -rf /var/cache/apk/*
ADD
coredns /coredns
EXPOSE
53 53/udp
ENTRYPOINT
["/coredns"]
\ No newline at end of file
baseimg/eureka/Dockerfile
deleted
100644 → 0
View file @
8863fba7
FROM
192.168.4.36/baseimg/jdk8
MAINTAINER
zhangbin "bin.zhang@quantgroup.cn"
USER
root
ARG
SYSTEM_NAME=silk-road-eureka
WORKDIR
/home/quant_group
RUN
mkdir
${
SYSTEM_NAME
}
/
RUN
mkdir
logs/
ARG
BUILD_NUMBER
RUN
echo
"
${
BUILD_NUMBER
}
"
>>
./version.txt
VOLUME
/home/quant_group/logs/
EXPOSE
7080
COPY
./*.jar /home/quant_group/${SYSTEM_NAME}/${SYSTEM_NAME}/.jar
RUN
chmod
+x ./docker-entrypoint.sh
CMD
["./docker-entrypoint.sh"]
\ No newline at end of file
baseimg/eureka/docker-entrypoint.sh
deleted
100644 → 0
View file @
8863fba7
#!/bin/sh
echo
"java_start java"
module_name
=
"silk-road-eureka"
package_path
=
"./
${
module_name
}
/
${
module_name
}
.jar"
echo
"java -Xmx512m -XX:PermSize64m -Xloggc:/tmp/
${
module_name
}
_gc.log -XX:+PrintGCDetails -XX:+PrintGCTimeStamps -jar
${
package_path
}
--worker 1 --currentWorker 1 -t > /dev/null 2>&1"
java
-Xmx512m
-XX
:PermSize64m
-Xloggc
:/tmp/
${
module_name
}
_gc.log
-XX
:+PrintGCDetails
-XX
:+PrintGCTimeStamps
-jar
${
package_path
}
--worker
1
--currentWorker
1
-t
>
/dev/null 2>&1
\ No newline at end of file
baseimg/python/Dockerfile
deleted
100644 → 0
View file @
8863fba7
FROM
192.168.4.36/baseimg/ubuntu
MAINTAINER
kalvin "dekun.dai@quantgroup.cn"
RUN
apt-get
install
python-pip
\
python-mysqldb
\
libmysqlclient-dev
\
python-dev
-y
\ 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