25 lines
481 B
YAML
25 lines
481 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
|
|
- ./src/server-deno/public:/app/public:ro
|
|
restart: unless-stopped
|
|
networks:
|
|
- hitstar-network
|
|
|
|
networks:
|
|
hitstar-network:
|
|
driver: bridge
|