Update
All checks were successful
release-tag / release-image (push) Successful in 2m46s

This commit is contained in:
2026-05-18 13:16:52 +02:00
parent 1292b1649d
commit 39e6bea5b6
3 changed files with 93 additions and 68 deletions

27
docker-compose.yml Normal file
View File

@@ -0,0 +1,27 @@
services:
b1tsblog:
build:
context: .
dockerfile: Dockerfile
args:
CONTENT_REPO: https://git.send.nrw/b1tsblog/blogcontent.git
CONTENT_REF: main
container_name: b1tsblog
restart: unless-stopped
ports:
- "8080:8080"
environment:
BLOG_CONTENT_DIR: /content
BLOG_STATIC_DIR: /static
BLOG_PAGES_DIR: /pages
BLOG_TEMPLATES_DIR: /templates
BLOG_DATA_DIR: /data
BLOG_TRUSTED_HTML: "true"
GIT_ENABLE: "false"
GIT_REPO: "https://git.send.nrw/b1tsblog/blogcontent.git"
GIT_BRANCH: main
GIT_DIR: /git-temp
GIT_INTERVAL: "10"
volumes:
- ./data:/data