Add Docker deployment, remove Clerk auth, and configure OSS mode

This commit is contained in:
2026-07-23 20:26:59 +00:00
parent b26ad3509f
commit 4888092364
7 changed files with 102 additions and 14 deletions
+49
View File
@@ -0,0 +1,49 @@
services:
backend:
build:
context: .
dockerfile: backend/Dockerfile
container_name: pinscope-backend
restart: unless-stopped
env_file:
- .env
environment:
ANTHROPIC_API_KEY: ${ANTHROPIC_API_KEY}
volumes:
- ./data:/app/data
- ./taxonomy:/app/taxonomy
ports:
- "8080:8080"
networks:
- pinscope
frontend:
build:
context: ./frontend
dockerfile: dockerfile
args:
NEXT_PUBLIC_API_URL: ""
container_name: pinscope-frontend
restart: unless-stopped
depends_on:
- backend
ports:
- "3000:3000"
networks:
- pinscope
networks:
pinscope:
driver: bridge