Fully reordered file structure. All files splitted by servises. Manuals will be added where needed.

This commit is contained in:
Max Buz
2023-09-22 17:31:13 +02:00
committed by GitHub
commit 54e66e3af9
15 changed files with 287 additions and 0 deletions

14
portainer/portainer.yaml Normal file
View File

@@ -0,0 +1,14 @@
version: "3"
services:
portainer:
image: portainer/portainer-ce:latest
ports:
- 9443:9443
env_file:
- stack.env
volumes:
- ${PORTAINER_DATA}:/data
- /var/run/docker.sock:/var/run/docker.sock
restart: unless-stopped
volumes:
data:

View File

@@ -0,0 +1,2 @@
# Path where thr Portainer data will be stored on the host
PORTAINER_DATA=/path/to/portainer/data