initial commit

This commit is contained in:
Greg Johnson
2025-09-20 12:20:27 +10:00
commit e01e658ca2
20 changed files with 925 additions and 0 deletions

22
www/compose.yml Normal file
View File

@@ -0,0 +1,22 @@
name: saltaire_www
services:
www:
container_name: saltaire_www_www
image: caddy:2.8.4-alpine
restart: unless-stopped
networks:
- proxy
volumes:
- ./config/Caddyfile:/etc/caddy/Caddyfile
- data:/data
- config:/config
- site:/srv
networks:
proxy:
external: true
volumes:
config:
data:
site:

3
www/config/Caddyfile Normal file
View File

@@ -0,0 +1,3 @@
:80 {
file_server
}