feat(fotograf-de-scraper): initial setup with backend and frontend scaffold [32788f42]

This commit is contained in:
2026-03-20 13:28:53 +00:00
parent b8eae846a5
commit 62ae7fe69e
7 changed files with 819 additions and 0 deletions

View File

@@ -0,0 +1,29 @@
version: '3.8'
services:
fotograf-de-scraper-backend:
build:
context: ./backend
dockerfile: Dockerfile
container_name: fotograf-de-scraper-backend
env_file:
- ./.env
ports:
- "8001:8000" # Map internal 8000 to external 8001 to avoid conflicts
volumes:
- ./backend:/app # Mount the backend code for easier development
restart: unless-stopped
fotograf-de-scraper-frontend:
build:
context: ./frontend
dockerfile: Dockerfile
container_name: fotograf-de-scraper-frontend
ports:
- "3009:80" # Map internal 80 to external 3009
depends_on:
- fotograf-de-scraper-backend
volumes:
- ./frontend:/app # Mount the frontend code for easier development
restart: unless-stopped