Add edge01 Portainer configuration

This commit is contained in:
2026-08-03 15:30:57 -04:00
parent 97e9a1d205
commit 038bd4492c
3 changed files with 43 additions and 0 deletions
+1
View File
@@ -0,0 +1 @@
data/
+21
View File
@@ -0,0 +1,21 @@
# Portainer
## Purpose
Web interface for managing Docker on edge01.
## URL
https://portainer.zerafa.com
## Container
- portainer
## Runtime Data
- data/
This directory is intentionally excluded from Git.
## Configuration
- compose.yaml
## Notes
Portainer is started with --no-setup-token.
+21
View File
@@ -0,0 +1,21 @@
services:
portainer:
image: portainer/portainer-ce:lts
command:
- --no-setup-token
container_name: portainer
restart: unless-stopped
volumes:
- /var/run/docker.sock:/var/run/docker.sock
- ./data:/data
networks:
- proxy
security_opt:
- no-new-privileges:true
networks:
proxy:
external: true