Files
AR-Menu/docker-compose.yml
pelpanagiotis 479e9bb979 Add Docker image and compose for Needle web exports
Serve production Vite dist with nginx; optional SampleScene profile.

Made-with: Cursor
2026-04-19 23:05:50 +03:00

24 lines
481 B
YAML

services:
# Default: Needle/MenuScene → http://localhost:8080
menu:
build:
context: .
dockerfile: Dockerfile
args:
NEEDLE_APP: MenuScene
ports:
- "8080:80"
restart: unless-stopped
# Optional: docker compose --profile sample up --build
sample:
profiles: ["sample"]
build:
context: .
dockerfile: Dockerfile
args:
NEEDLE_APP: SampleScene
ports:
- "8081:80"
restart: unless-stopped