Files
Nexus_Mat/docker-compose.yml

15 lines
280 B
YAML

services:
app:
image: ${IMAGE_REF:-nexus-material:latest}
build:
context: .
dockerfile: Dockerfile
env_file:
- .env
ports:
- "3000:3000"
volumes:
- ./data:/app/data
restart: unless-stopped
command: sh -c "npm run start"