OVHserver/opt/02-core/presenton/docker-compose.yml
SamoilenkoVadym a1d606d4fb chore: reset Presenton to clean installation
- Remove LiteLLM proxy configuration
- Reset to default single-container setup
- Clear all custom LLM and image provider settings
- Remove litellm-config.yaml
- Simple .env with minimal configuration

Service is now in clean state ready for fresh configuration

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

Co-Authored-By: Claude <noreply@anthropic.com>
2025-11-06 10:13:20 +00:00

32 lines
822 B
YAML

version: '3.8'
services:
presenton:
image: ghcr.io/presenton/presenton:latest
container_name: presenton
restart: unless-stopped
networks:
- traefik-public
env_file:
- .env
volumes:
- ./app_data:/app_data
deploy:
resources:
limits:
cpus: '2'
memory: 2G
reservations:
cpus: '1'
memory: 512M
labels:
- "traefik.enable=true"
- "traefik.docker.network=traefik-public"
- "traefik.http.routers.presenton.rule=Host(`presentation.ai-impress.com`)"
- "traefik.http.routers.presenton.entrypoints=websecure"
- "traefik.http.routers.presenton.tls.certresolver=cloudflare"
- "traefik.http.services.presenton.loadbalancer.server.port=80"
networks:
traefik-public:
external: true