mirror of
https://github.com/tiyn/wiki.git
synced 2026-02-22 10:24:47 +01:00
Structure:
- main wiki folder added - removed partition into software-types - thinking about partition by software/general
This commit is contained in:
74
wiki/portainer.md
Normal file
74
wiki/portainer.md
Normal file
@@ -0,0 +1,74 @@
|
||||
# Portainer
|
||||
|
||||
## Setup Server
|
||||
|
||||
### Docker
|
||||
|
||||
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 |
|
||||
|
||||
#### Rebuild
|
||||
|
||||
```
|
||||
#!/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
|
||||
```
|
||||
|
||||
## Setup Agent
|
||||
|
||||
### Docker
|
||||
|
||||
The official container and documentation was made by [portainer](https://hub.docker.com/r/portainer/agent).
|
||||
|
||||
#### Volumes
|
||||
Set the following volumes with the -v tag.
|
||||
|
||||
| Volume-Name | Container mount | Description |
|
||||
| ----------------------- | ----------------------- | -------------------------------------- |
|
||||
| /var/run/docker.sock | /var/run/docker.sock | connect your running docker containers |
|
||||
| /var/lib/docker/volumes | /var/lib/docker/volumes | connect running docker volumes |
|
||||
|
||||
#### Ports
|
||||
Set the following ports with the -p tag.
|
||||
|
||||
| Container Port | Recommended outside port | Protocol | Description |
|
||||
| -------------- | ------------------------ | -------- | -------------------- |
|
||||
| 9001 | 9001 | TCP | Portainer agent port |
|
||||
|
||||
#### Rebuild
|
||||
|
||||
```
|
||||
#!/bin/sh
|
||||
docker stop portainer_agent
|
||||
docker rm portainer_agent
|
||||
docker pull portainer/agent:latest
|
||||
docker run --name portainer_agent \
|
||||
-p 9001:9001 \
|
||||
--restart unless-stopped \
|
||||
-v /var/run/docker.sock:/var/run/docker.sock \
|
||||
-v /var/lib/docker/volumes:/var/lib/docker/volumes \
|
||||
-d portainer/agent:latest
|
||||
```
|
||||
|
||||
Reference in New Issue
Block a user