- Update docker-compose.yml to reference Gitea registry image - Add docker-publish.cmd for building and pushing to Gitea - Fix ArchiveService to handle cross-device moves by falling back to copy+delete when input and archive are on different volumes Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
13 lines
292 B
YAML
13 lines
292 B
YAML
services:
|
|
discord-archive:
|
|
image: git.thecozycat.net/aj/discordarchivemanager:latest
|
|
build: .
|
|
volumes:
|
|
- ./input:/app/input
|
|
- ./archive:/app/archive
|
|
- ./images:/app/images
|
|
env_file:
|
|
- .env
|
|
extra_hosts:
|
|
- "host.docker.internal:host-gateway"
|