Files
hitstar/docker-compose.yml
Elmar Kresse 1dbae8b62b
All checks were successful
Build and Push Docker Image / docker (push) Successful in 6s
fix: remove unused volume mapping for public directory in docker-compose
2025-10-19 22:24:13 +02:00

24 lines
433 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:
- "5173:5173"
volumes:
- ./data:/app/data:ro
restart: unless-stopped
networks:
- hitstar-network
networks:
hitstar-network:
driver: bridge