rename portainer-ee to portainer

This commit is contained in:
L4RM4ND
2024-03-10 05:01:41 +01:00
parent 4cce17dddd
commit 83e89ccdbb
3 changed files with 1 additions and 1 deletions

View File

@@ -0,0 +1,8 @@
# References
- https://github.com/portainer/portainer
- https://www.portainer.io/take-5
# Notes
Complete the form [here](https://www.portainer.io/take-5) and you'll receive a Portainer Business serial for free.

View File

@@ -0,0 +1,35 @@
version: '3'
services:
portainer:
image: portainer/portainer-ee:latest # or use community edition via portainer/portainer-ce
container_name: portainer-ee # may rename to portainer-ce if community edition is used
restart: unless-stopped
volumes:
- /etc/localtime:/etc/localtime:ro
- /var/run/docker.sock:/var/run/docker.sock:ro
- portainer_data:/data
ports:
- 9443:9443
expose:
- 9443
- 9000
- 8000
#networks:
# - proxy
#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
#networks:
# proxy:
# external: true
volumes:
portainer_data:
external: true
name: portainer_data