Files
periscope/docker-compose.yml
T
micheleandCursor 8d2b85600f Rebrand Pinscope to Periscope across product and codebase.
Rename the core package to periscopex, update UI/docs/Docker/deploy defaults to periscope.michelebigi.it, and keep legacy version/storage key aliases so existing projects keep working.

Co-authored-by: Cursor <cursoragent@cursor.com>
2026-09-13 20:02:04 +02:00

53 lines
905 B
YAML

services:
backend:
build:
context: .
dockerfile: backend/Dockerfile
container_name: periscope-backend
restart: unless-stopped
env_file:
- .env
environment:
DEEPSEEK_API_KEY: ${DEEPSEEK_API_KEY}
ANTHROPIC_API_KEY: ${ANTHROPIC_API_KEY:-}
GEMINI_API_KEY: ${GEMINI_API_KEY:-}
volumes:
- ./data:/app/data
- ./taxonomy:/app/taxonomy
ports:
- "8080:8080"
networks:
- periscope
frontend:
build:
context: ./frontend
dockerfile: dockerfile
args:
NEXT_PUBLIC_API_URL: ${NEXT_PUBLIC_API_URL:-http://localhost:8080}
NEXT_PUBLIC_AUTH_MODE: ${NEXT_PUBLIC_AUTH_MODE:-}
container_name: periscope-frontend
restart: unless-stopped
depends_on:
- backend
ports:
- "3000:3000"
networks:
- periscope
networks:
periscope:
driver: bridge