add docker compose + maj gitignore

This commit is contained in:
Taywon
2026-03-20 22:11:53 +01:00
parent 5a0857b8a2
commit f0e7984db3
2 changed files with 12 additions and 0 deletions

1
.gitignore vendored
View File

@@ -362,3 +362,4 @@ MigrationBackup/
# Fody - auto-generated XML schema
FodyWeavers.xsd
/Tagger/RunEnv/config.json
/config

11
docker-compose.yml Normal file
View File

@@ -0,0 +1,11 @@
services:
tagger:
build:
context: .
dockerfile: Tagger/Dockerfile
restart: always
ports:
- "5002:8080"
volumes:
- "./config/Pages:/app/Pages"
- "./config/config.json:/app/config.json"