Some checks failed
Build & Push Docker Image / build-and-push (push) Failing after 5s
- FastAPI-based Matrix chat export tool with E2E support - Dockerfile with Python 3.12-slim base image - Docker Compose with dedicated network configuration - Gitea Actions workflow for automated image builds - README with setup instructions and feature overview - MIT license Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
27 lines
580 B
YAML
27 lines
580 B
YAML
services:
|
|
matrix-chat-export:
|
|
build: .
|
|
container_name: matrix-chat-export
|
|
restart: unless-stopped
|
|
ports:
|
|
- "8092:8080"
|
|
volumes:
|
|
- ./data/exports:/app/exports
|
|
- ./data/store:/app/store
|
|
environment:
|
|
- TZ=Europe/Berlin
|
|
- LOG_LEVEL=INFO
|
|
networks:
|
|
matrixexport_net:
|
|
ipv4_address: 172.27.83.10
|
|
|
|
networks:
|
|
matrixexport_net:
|
|
name: matrixexport.dockernetwork.local
|
|
driver: bridge
|
|
ipam:
|
|
config:
|
|
- subnet: 172.27.83.0/24
|
|
gateway: 172.27.83.1
|
|
ip_range: 172.27.83.128/25
|