Initial commit: all siklos docker-compose files

This commit is contained in:
2026-04-29 10:42:41 -05:00
commit c07e58865d
18 changed files with 488 additions and 0 deletions
+13
View File
@@ -0,0 +1,13 @@
services:
grav:
image: lscr.io/linuxserver/grav:latest
container_name: grav
environment:
- PUID=1000 # Use 'id $USER' to check your ID
- PGID=1000
- TZ=America/Chicago # Change to your timezone
volumes:
- ./config:/config # All your site data stays here
ports:
- 8585:80
restart: unless-stopped