Fix up docker

This commit is contained in:
2025-10-18 02:07:37 -04:00
parent 9c98e65c2d
commit 42d2b88e79
5 changed files with 18 additions and 59 deletions

View File

@@ -0,0 +1,21 @@
version: "3.9"
services:
web:
build:
context: .
dockerfile: Dockerfile
expose:
- "80"
restart: unless-stopped
proxy:
image: caddy:alpine
command: caddy reverse-proxy --from :80 --to web:80
depends_on:
- web
ports:
# change the left side to whatever host port you want
- "8080:80"
restart: unless-stopped