Add portainer

This commit is contained in:
olomana 2023-02-10 21:39:05 +00:00
parent b42ba68ad9
commit 497676e1a3
2 changed files with 26 additions and 0 deletions

9
portainer/README.md Normal file
View 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.

View 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