Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Menu
Open sidebar
小 白蛋
Rainbond2
Commits
c6597194
Commit
c6597194
authored
3 years ago
by
barnettZQG
Browse files
Options
Download
Email Patches
Plain Diff
change Dockerfile
parent
d98dbf0b
main
Develop-V5.X
V5.3
V5.4
feat-V5.10
feat-V5.10.1
feat-containerd
feat-containerd1
feature-k8s
fixbug-560
master
zqhtest-containerd
v5.10.0-release
v5.9.0-release
v5.8.1-release
v5.8.0-release
v5.7.1-release
v5.7.0-release
v5.6.0-release
v5.5.0-release
v5.5.0-dind
v5.4.1-release
v5.4.0-release
v5.3.3-release
v5.3.2-release
v5.3.1-release
Changes
13
Hide whitespace changes
Inline
Side-by-side
Showing
13 changed files
hack/contrib/docker/api/Dockerfile
+1
-0
hack/contrib/docker/api/Dockerfile
hack/contrib/docker/chaos/Dockerfile
+1
-1
hack/contrib/docker/chaos/Dockerfile
hack/contrib/docker/eventlog/Dockerfile
+1
-1
hack/contrib/docker/eventlog/Dockerfile
hack/contrib/docker/gateway/Dockerfile
+1
-1
hack/contrib/docker/gateway/Dockerfile
hack/contrib/docker/grctl/Dockerfile
+1
-0
hack/contrib/docker/grctl/Dockerfile
hack/contrib/docker/init-probe/Dockerfile
+1
-0
hack/contrib/docker/init-probe/Dockerfile
hack/contrib/docker/mesh-data-panel/Dockerfile
+1
-0
hack/contrib/docker/mesh-data-panel/Dockerfile
hack/contrib/docker/monitor/Dockerfile
+1
-1
hack/contrib/docker/monitor/Dockerfile
hack/contrib/docker/mq/Dockerfile
+1
-1
hack/contrib/docker/mq/Dockerfile
hack/contrib/docker/node/Dockerfile
+1
-0
hack/contrib/docker/node/Dockerfile
hack/contrib/docker/resource-proxy/Dockerfile
+1
-1
hack/contrib/docker/resource-proxy/Dockerfile
hack/contrib/docker/webcli/Dockerfile
+1
-1
hack/contrib/docker/webcli/Dockerfile
hack/contrib/docker/worker/Dockerfile
+0
-1
hack/contrib/docker/worker/Dockerfile
with
12 additions
and
8 deletions
+12
-8
hack/contrib/docker/api/Dockerfile
+
1
-
0
View file @
c6597194
FROM
goodrainapps/alpine:3.4
ARG
RELEASE_DESC
LABEL
author=zengqg@goodrain.com
ADD
rainbond-api /run/rainbond-api
ADD
entrypoint.sh /run/entrypoint.sh
...
...
This diff is collapsed.
Click to expand it.
hack/contrib/docker/chaos/Dockerfile
+
1
-
1
View file @
c6597194
FROM
goodrainapps/alpine:3.4
ARG
RELEASE_DESC
LABEL
author="zengqg@goodrain.com"
ENV
WORK_DIR=/run
...
...
This diff is collapsed.
Click to expand it.
hack/contrib/docker/eventlog/Dockerfile
+
1
-
1
View file @
c6597194
FROM
goodrainapps/alpine:3.4
ARG
RELEASE_DESC
RUN
apk
--no-cache
add libstdc++ ca-certificates openssl openssl-dev
COPY
build/libzmq/lib/libzmq.so.3 /usr/lib
...
...
This diff is collapsed.
Click to expand it.
hack/contrib/docker/gateway/Dockerfile
+
1
-
1
View file @
c6597194
FROM
rainbond/openresty:1.15.8.2
ARG
RELEASE_DESC
RUN
apk add
--no-cache
bash net-tools curl tzdata
&&
\
cp
/usr/share/zoneinfo/Asia/Shanghai /etc/localtime
&&
\
echo
"Asia/Shanghai"
>
/etc/timezone
&&
\
...
...
This diff is collapsed.
Click to expand it.
hack/contrib/docker/grctl/Dockerfile
+
1
-
0
View file @
c6597194
FROM
goodrainapps/alpine:3.4
ARG
RELEASE_DESC
COPY
. /run
RUN
chmod
+x /run/rainbond-grctl /run/entrypoint.sh
VOLUME
[ "/rootfs/root","/rootfs/path","/ssl" ]
...
...
This diff is collapsed.
Click to expand it.
hack/contrib/docker/init-probe/Dockerfile
+
1
-
0
View file @
c6597194
FROM
goodrainapps/alpine:3.4
ARG
RELEASE_DESC
COPY
. /run/
RUN
chmod
655 /run/rainbond-init-probe /run/entrypoint.sh
ENV
RELEASE_DESC=${RELEASE_DESC}
...
...
This diff is collapsed.
Click to expand it.
hack/contrib/docker/mesh-data-panel/Dockerfile
+
1
-
0
View file @
c6597194
FROM
envoyproxy/envoy:v1.13.1
ARG
RELEASE_DESC
LABEL
"author"="zengqg@goodrain.com"
RUN
apt-get update
&&
apt-get
install
-y
bash curl net-tools wget vim
&&
\
wget https://github.com/barnettZQG/env2file/releases/download/0.1.1/env2file-linux
-O
/usr/bin/env2file
...
...
This diff is collapsed.
Click to expand it.
hack/contrib/docker/monitor/Dockerfile
+
1
-
1
View file @
c6597194
FROM
rainbond/prometheus:v2.20.0
ARG
RELEASE_DESC
USER
root
VOLUME
["/prometheusdata"]
...
...
This diff is collapsed.
Click to expand it.
hack/contrib/docker/mq/Dockerfile
+
1
-
1
View file @
c6597194
FROM
goodrainapps/alpine:3.4
ARG
RELEASE_DESC
COPY
rainbond-mq /run/rainbond-mq
ADD
entrypoint.sh /run/entrypoint.sh
RUN
chmod
655 /run/rainbond-mq
...
...
This diff is collapsed.
Click to expand it.
hack/contrib/docker/node/Dockerfile
+
1
-
0
View file @
c6597194
FROM
goodrainapps/alpine:3.4
ARG
RELEASE_DESC
ADD
. /run
ENV
RELEASE_DESC=${RELEASE_DESC}
EXPOSE
6100 6101 9125
...
...
This diff is collapsed.
Click to expand it.
hack/contrib/docker/resource-proxy/Dockerfile
+
1
-
1
View file @
c6597194
FROM
nginx:1.19
ARG
RELEASE_DESC
VOLUME
["/data/nginx/cache"]
ENV
RELEASE_DESC=${RELEASE_DESC}
...
...
This diff is collapsed.
Click to expand it.
hack/contrib/docker/webcli/Dockerfile
+
1
-
1
View file @
c6597194
FROM
goodrainapps/alpine:3.4
ARG
RELEASE_DESC
ENV
PORT 7070
ADD
rainbond-webcli /usr/bin/rainbond-webcli
...
...
This diff is collapsed.
Click to expand it.
hack/contrib/docker/worker/Dockerfile
+
0
-
1
View file @
c6597194
FROM
goodrainapps/alpine:3.4
ARG
RELEASE_DESC
COPY
rainbond-worker /run/rainbond-worker
COPY
entrypoint.sh /run/entrypoint.sh
...
...
This diff is collapsed.
Click to expand it.
Write
Preview
Supports
Markdown
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
Menu
Projects
Groups
Snippets
Help