managarten/apps-archived/memoro/apps/landing/services/admin-api/docker-compose.yml
Till-JS 61d181fbc2 chore: archive inactive projects to apps-archived/
Move inactive projects out of active workspace:
- bauntown (community website)
- maerchenzauber (AI story generation)
- memoro (voice memo app)
- news (news aggregation)
- nutriphi (nutrition tracking)
- reader (reading app)
- uload (URL shortener)
- wisekeep (AI wisdom extraction)

Update CLAUDE.md documentation:
- Add presi to active projects
- Document archived projects section
- Update workspace configuration

Archived apps can be re-activated by moving back to apps/

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude <noreply@anthropic.com>
2025-11-29 07:03:59 +01:00

55 lines
No EOL
1.2 KiB
YAML

version: '3.8'
services:
admin-api:
build: .
ports:
- "3001:3001"
environment:
- NODE_ENV=production
- PORT=3001
- REPLICATE_API_TOKEN=${REPLICATE_API_TOKEN}
- CORS_ORIGIN=${CORS_ORIGIN:-http://localhost:4321}
- API_KEY=${API_KEY:-memoro-admin-api-key-2025}
- STORAGE_PATH=/app/storage/images
- LOG_LEVEL=info
volumes:
- ./storage:/app/storage
restart: unless-stopped
networks:
- memoro-network
# Optional: Redis for queue management
redis:
image: redis:7-alpine
ports:
- "6379:6379"
volumes:
- redis-data:/data
networks:
- memoro-network
restart: unless-stopped
# Optional: MinIO for S3-compatible storage
minio:
image: minio/minio
ports:
- "9000:9000"
- "9001:9001"
volumes:
- minio-data:/data
environment:
- MINIO_ROOT_USER=${MINIO_ROOT_USER:-minioadmin}
- MINIO_ROOT_PASSWORD=${MINIO_ROOT_PASSWORD:-minioadmin}
command: server /data --console-address ":9001"
networks:
- memoro-network
restart: unless-stopped
networks:
memoro-network:
driver: bridge
volumes:
redis-data:
minio-data: