Files
hitstar/docker-compose.yml
Elmar Kresse 70be1e7e39
All checks were successful
Build and Push Docker Image / docker (push) Successful in 9s
feat: Enhance iOS Safari audio streaming support with optimizations and specific headers
2025-10-19 23:18:25 +02:00

24 lines
441 B
YAML

services:
# Production service
hitstar:
build:
context: .
dockerfile: Dockerfile
target: production
image: hitstar-deno:prod
container_name: hitstar
environment:
- DENO_ENV=production
- PORT=5173
ports:
- "0.0.0.0:5173:5173"
volumes:
- ./data:/app/data:ro
restart: unless-stopped
networks:
- hitstar-network
networks:
hitstar-network:
driver: bridge