10 lines
202 B
YAML
10 lines
202 B
YAML
version: "3.8"
|
|
|
|
services:
|
|
lic-decoder:
|
|
build: .
|
|
ports:
|
|
- "127.0.0.1:3080:3000"
|
|
environment:
|
|
- JWT_SECRET=${JWT_SECRET:-change-me-to-a-strong-secret}
|
|
restart: unless-stopped |