Initial commit: Filebot Media Browser
Vue 3 + FastAPI Webapp zur Anzeige von Filebot/n8n-Medienmetadaten aus PostgreSQL. Enthält Frontend, API, Nginx-Config, SQL-Migrationen und Docker-Compose-Setup. Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
@@ -0,0 +1,31 @@
|
||||
# Deployment: cd /opt/nginx_filebot && docker compose up -d --build
|
||||
# Pfade relativ zum Projektordner (funktioniert überall unter /opt/nginx_filebot)
|
||||
|
||||
name: nginx_filebot
|
||||
|
||||
services:
|
||||
api:
|
||||
build: ./api
|
||||
restart: unless-stopped
|
||||
volumes:
|
||||
- ./config/config.yaml:/app/config/config.yaml:ro
|
||||
environment:
|
||||
CONFIG_PATH: /app/config/config.yaml
|
||||
networks:
|
||||
- filebot-net
|
||||
|
||||
web:
|
||||
build:
|
||||
context: .
|
||||
dockerfile: nginx/Dockerfile
|
||||
ports:
|
||||
- "8090:80"
|
||||
depends_on:
|
||||
- api
|
||||
restart: unless-stopped
|
||||
networks:
|
||||
- filebot-net
|
||||
|
||||
networks:
|
||||
filebot-net:
|
||||
driver: bridge
|
||||
Reference in New Issue
Block a user