Add edge01 Portainer configuration
This commit is contained in:
@@ -0,0 +1 @@
|
||||
data/
|
||||
@@ -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.
|
||||
@@ -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
|
||||
Reference in New Issue
Block a user