mirror of
https://github.com/tiyn/wiki.git
synced 2025-10-10 09:51:22 +02:00
restructuring to wiki-repo
This commit is contained in:
18
docker/portainer/readme.md
Normal file
18
docker/portainer/readme.md
Normal file
@@ -0,0 +1,18 @@
|
||||
# Portainer
|
||||
This is a dockerized version of portainer.
|
||||
The official container and documentation was made by [portainer](https://hub.docker.com/r/portainer/portainer).
|
||||
|
||||
## Volumes
|
||||
Set the following volumes with the -v tag.
|
||||
|
||||
| Volume-Name | Container mount | Description |
|
||||
| -------------------- | -------------------- | ------------------------------------------------- |
|
||||
| portainer | /data | configuration directory |
|
||||
| /var/run/docker.sock | /var/run/docker.sock | connection to local docker containers and volumes |
|
||||
|
||||
## Ports
|
||||
Set the following ports with the -p tag.
|
||||
|
||||
| Container Port | Recommended outside port | Protocol | Description |
|
||||
| -------------- | ------------------------ | -------- | ----------- |
|
||||
| 9000 | 9000 | TCP | WebUI |
|
10
docker/portainer/rebuild.sh
Executable file
10
docker/portainer/rebuild.sh
Executable file
@@ -0,0 +1,10 @@
|
||||
#!/bin/sh
|
||||
docker stop portainer
|
||||
docker rm portainer
|
||||
docker pull portainer/portainer:latest
|
||||
docker run --name portainer \
|
||||
--restart unless-stopped \
|
||||
-p 9000:9000 \
|
||||
-v /var/run/docker.sock:/var/run/docker.sock \
|
||||
-v portainer:/data \
|
||||
-d portainer/portainer
|
Reference in New Issue
Block a user