Initial commit

This commit is contained in:
georgew 2026-01-25 16:12:50 +00:00
commit b4acb2cb15
2 changed files with 22 additions and 0 deletions

5
.gitignore vendored Normal file
View file

@ -0,0 +1,5 @@
# Ignore the actual application state and database
portainer_data/
# Ignore secrets
.env

17
docker-compose.yaml Normal file
View file

@ -0,0 +1,17 @@
services:
portainer:
image: portainer/portainer-ce:latest
container_name: portainer
restart: unless-stopped
security_opt:
- no-new-privileges:true
networks:
- web_traffic
volumes:
- /etc/localtime:/etc/localtime:ro
- /var/run/docker.sock:/var/run/docker.sock:ro
- ./portainer_data:/data
networks:
web_traffic:
external: true