mirror of
https://github.com/runyanjake/olomana.git
synced 2025-10-05 05:37:29 -07:00
Add portainer
This commit is contained in:
parent
b42ba68ad9
commit
497676e1a3
9
portainer/README.md
Normal file
9
portainer/README.md
Normal file
@ -0,0 +1,9 @@
|
|||||||
|
# Poratiner for Whitney
|
||||||
|
|
||||||
|
Portainer management instance for Whitney. Admin access only.
|
||||||
|
|
||||||
|
### Start with Docker-Compose
|
||||||
|
|
||||||
|
docker-compose up -d
|
||||||
|
|
||||||
|
The UI is available over port 9000 (this is different from the default port 9443). After starting the container you should be able to connect to the UI from another computer over the local network.
|
17
portainer/docker-compose.yml
Normal file
17
portainer/docker-compose.yml
Normal file
@ -0,0 +1,17 @@
|
|||||||
|
version: "3"
|
||||||
|
|
||||||
|
volumes:
|
||||||
|
portainer_data:
|
||||||
|
|
||||||
|
services:
|
||||||
|
portainer:
|
||||||
|
image: portainer/portainer-ce
|
||||||
|
container_name: portainer
|
||||||
|
restart: always
|
||||||
|
ports:
|
||||||
|
- "8000:8000"
|
||||||
|
- "9000:9000"
|
||||||
|
volumes:
|
||||||
|
- /var/run/docker.sock:/var/run/docker.sock:ro
|
||||||
|
- portainer_data:/data
|
||||||
|
|
Loading…
x
Reference in New Issue
Block a user