Files
chaosmith-site/docker-compose.yml
Pierre De Lancre c2e58aa9d7 Initial commit: chaosmith-site with blog
Static landing page + markdown blog served by Go.
Goldmark renders posts in-memory, no database.
Dockerfile + compose for podman deployment.

👾 Generated with [Letta Code](https://letta.com)

Co-Authored-By: Letta Code <noreply@letta.com>
2026-06-24 14:58:29 +03:00

9 lines
149 B
YAML

services:
website:
build: .
ports:
- "8000:8000"
volumes:
- ./content/posts:/app/content/posts
restart: unless-stopped