Merge branch 'master' of https://git.webhosting.rug.nl/p216149/docs
This commit is contained in:
commit
f6aca75dc4
|
@ -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!
|
||||
|
|
|
@ -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
|
|
@ -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
|
Loading…
Reference in New Issue