24 lines
462 B
YAML
24 lines
462 B
YAML
services:
|
|
9router:
|
|
build:
|
|
context: .
|
|
image: 9router:local
|
|
container_name: 9router
|
|
restart: unless-stopped
|
|
env_file:
|
|
- .env
|
|
environment:
|
|
NODE_ENV: production
|
|
PORT: 20128
|
|
HOSTNAME: 0.0.0.0
|
|
DATA_DIR: /app/data
|
|
BASE_URL: http://localhost:20128
|
|
NEXT_PUBLIC_BASE_URL: http://localhost:20128
|
|
ports:
|
|
- "20128:20128"
|
|
volumes:
|
|
- 9router-data:/app/data
|
|
|
|
volumes:
|
|
9router-data:
|