22 lines
435 B
YAML
22 lines
435 B
YAML
version: '3.8'
|
|
|
|
services:
|
|
romm-ui-dev:
|
|
build:
|
|
context: .
|
|
target: dev
|
|
ports:
|
|
- "5173:5173"
|
|
volumes:
|
|
- .:/app
|
|
- /app/node_modules # Prevents host node_modules from overwriting container's
|
|
environment:
|
|
- ROMM_BASE_URL=https://retro.chieflix.com
|
|
|
|
romm-ui-prod:
|
|
build:
|
|
context: .
|
|
target: prod
|
|
ports:
|
|
- "8000:80" # Exposed on port 8000 for local prod testing
|