This commit is contained in:
G.J.C. Strikwerda 2018-04-05 17:04:28 +02:00
commit f6aca75dc4
3 changed files with 25 additions and 2 deletions

View File

@ -1,3 +1,4 @@
Doc site Ger Strikwerda
Docsite -=Ger=-
========================
Zie hier een aantal handige docs inzake projectjes waar ik mee bezig ben
Zie hier een aantal handige docs inzake projectjes waar ik mee bezig ben!

13
iptables-stop Normal file
View File

@ -0,0 +1,13 @@
#!/bin/bash
# firewall stop scriptje
# reset all:
iptables -F
iptables -X
iptables -Z
# set policies wide-open:
iptables -P INPUT ACCEPT
iptables -P OUTPUT ACCEPT
iptables -P FORWARD ACCEPT

9
portainer Normal file
View File

@ -0,0 +1,9 @@
Portainer is a nice gui/browser tool to manage your docker images/containers
create /opt/portainer/ direcory:
# mkdir /opt/portainer/
run portainer as a docker:
# docker run -d -p 9000:9000 --restart always -v /var/run/docker.sock:/var/run/docker.sock -v /opt/portainer:/data portainer/portainer