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