You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
iptables -A EXTERNAL-ACCESS-DENY -j LOG --log-prefix "DCKR-EXT-ACCESS-DENY:" --log-level 6
66
68
iptables -A EXTERNAL-ACCESS-DENY -j DROP
67
69
68
-
# Block all incomming traffic for docker
70
+
# Block all incomming traffic for docker
69
71
iptables -A DOCKER-USER -i $EXTERNAL_INTERFACE \
70
72
-p tcp --match multiport \
71
73
--dports $PORTS_TO_BLOCK \
72
-
-j EXTERNAL-ACCESS-DENY
74
+
-j EXTERNAL-ACCESS-DENY
73
75
74
76
# Restore default rule to return all the rest back to the FORWARD-Chain
75
77
iptables -A DOCKER-USER -j RETURN
@@ -100,11 +102,11 @@ echo "See logs with prefix DCKR-EXT-ACCESS-DENY:"
100
102
101
103
### Giltab
102
104
103
-
* the docker-registry is at port 5555 (and secured with an openssl certificate ..thats part of
104
-
prepareCompose.sh), just create a project in gitlab and click at the registry tab to show
105
+
* the docker-registry is at port 5555 (and secured with an openssl certificate ..thats part of
106
+
prepareCompose.sh), just create a project in gitlab and click at the registry tab to show
105
107
how to login to the project registry and how to tag your images
106
108
* ssh cloning and pushing is at port 2222
107
-
109
+
108
110
#### gitlab-runner
109
111
The runner is a gitlab-multirunner image with a docker-runner (concurrent=1) , based on [gitlab/gitlab-runner][2] The docker-compose section has an environment called
110
112
REGISTER_MODE, it can set to KEEP or REFRESH
@@ -120,7 +122,7 @@ It takes a long time until gitlab is ready to accept a runner registration, if i
120
122
Gitlab is very very fast with new releases and sometimes the api has breaking changes. If something does not work take a look at the Jenkins Bugtracker.
121
123
122
124
### Sonar
123
-
You need to install some rules (Administration - System - Update Center - Available - Search: Java)
125
+
In future releases Sonar will be added...(You need to install some rules (Administration - System - Update Center - Available - Search: Java)
124
126
125
127
### Nexus
126
128
Some ToDo for me described here
@@ -132,23 +134,27 @@ And _yes_ docker-plugin in jenkins works (docker in docker, usefull but not reco
132
134
133
135
## Troubleshooting
134
136
135
-
In most cases a wrong DNS-Server causes trouble, to check this try the follwing.
137
+
In most cases a wrong HOSTNAME:HOSTIP causes trouble, to check this try the follwing.
0 commit comments