Compare commits

...

3 Commits

Author SHA1 Message Date
Kevin Douglas d42222ded0 Cleanup: .gitignore + remove .DS_Store + standardize .yml 2026-04-27 10:46:23 -04:00
Kevin Douglas 0b85e9da80 Standardize all compose files to .yml extension 2026-04-27 10:43:47 -04:00
Kevin Douglas 02b39d78ea Fix Docker socket for full container control 2026-04-27 10:35:21 -04:00
21 changed files with 25 additions and 0 deletions
Vendored
BIN
View File
Binary file not shown.
+5
View File
@@ -0,0 +1,5 @@
.DS_Store
.DS_Store?
._*
*.log
.env
+20
View File
@@ -0,0 +1,20 @@
version: '3.8'
volumes:
portainer_data:
services:
portainer:
image: portainer/portainer-ce:lts
container_name: portainer
restart: unless-stopped # Recommended over "always" for modern setups
ports:
- "8000:8000" # Agent / API port
- "9443:9443" # HTTPS Web UI
volumes:
- portainer_data:/data
- /var/run/docker.sock:/var/run/docker.sock
- /etc/timezone:/etc/timezone:ro
- /etc/localtime:/etc/localtime:ro
environment:
- TZ=America/New_York # ← Change this to your actual timezone