clean commit

This commit is contained in:
L4RM4ND
2023-02-15 22:45:31 +01:00
commit 09fbf06719
159 changed files with 3822 additions and 0 deletions

3
portainer-ee/README.md Normal file
View File

@@ -0,0 +1,3 @@
# Reference
https://github.com/portainer/portainer

View File

@@ -0,0 +1,25 @@
version: '3'
services:
portainer:
image: portainer/portainer-ee:latest
container_name: portainer-ee
restart: unless-stopped
volumes:
- /etc/localtime:/etc/localtime:ro
- /var/run/docker.sock:/var/run/docker.sock:ro
- portainer_data:/data
ports:
- 9443:9443
#labels:
# - traefik.enable=true
# - traefik.http.routers.portainer.rule=Host(`portainer.example.com`)
# - traefik.http.services.portainer.loadbalancer.server.port=9000
# - traefik.docker.network=proxy
# # Part for local lan services only
# - traefik.http.routers.portainer.middlewares=local-ipwhitelist@file
volumes:
portainer_data:
external: true
name: portainer_data