Skip to content

Commit 318a662

Browse files
committed
Update Artifacthub documentation
1 parent 69b3a86 commit 318a662

File tree

1 file changed

+21
-1
lines changed

1 file changed

+21
-1
lines changed

.github/README_ARTIFACTHUB.md

Lines changed: 21 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,6 @@ An elegant, offline‑first Progressive Web App (PWA) video player. This contain
1515

1616
- Preconfigured Caddy server serving static files
1717
- Hardened HTTP security headers
18-
- Rootless user
1918
- No volumes or env vars required
2019
- No TLS support (reverse proxy required for production use)
2120
- Expose port 80 in the container
@@ -34,3 +33,24 @@ Or build locally:
3433
docker build -t fluorite:latest .
3534
docker run --rm -p 4173:80 fluorite:latest
3635
```
36+
37+
## Treafik + Docker Compose setup
38+
39+
```yaml
40+
---
41+
name: Fluorite
42+
networks:
43+
traefik_proxy:
44+
external: true
45+
services:
46+
fluorite:
47+
image: ghcr.io/afcms/fluorite:master
48+
pull_policy: always
49+
restart: unless-stopped
50+
labels:
51+
- "traefik.enable=true"
52+
- "traefik.http.routers.fluorite.rule=Host(`fluorite.mydomain.com`)"
53+
- "traefik.http.services.fluorite.loadbalancer.server.port=80"
54+
networks:
55+
- traefik_proxy
56+
```

0 commit comments

Comments
 (0)