fichiers docker

This commit is contained in:
2025-02-25 20:00:50 +01:00
parent 0d2840e87f
commit edba466018
30 changed files with 1304 additions and 0 deletions

View File

@@ -0,0 +1,21 @@
###########################################################################
###########################################################################
##
## Docker Compose File: Portainer (Portainer.io)
## Function: Alternate GUI Manager for Docker
##
## Documentation: https://docs.portainer.io/start/install/server/docker
##
###########################################################################
###########################################################################
services:
portainer:
image: portainer/portainer-ce:latest
container_name: portainer
restart: always
volumes:
- /var/run/docker.sock:/var/run/docker.sock
- ${FOLDER_FOR_DATA:?err}/portainer:/data
ports:
- "${WEBUI_PORT_PORTAINER:?err}:9000"
network_mode: bridge