21 lines
376 B
YAML
21 lines
376 B
YAML
services:
|
|
noz:
|
|
build: .
|
|
restart: unless-stopped
|
|
ports:
|
|
- "3000:3000"
|
|
volumes:
|
|
- ./content:/app/content
|
|
- ./noosphere.toml:/app/noosphere.toml:ro
|
|
- noz-index:/app/.noosphere-index
|
|
env_file:
|
|
- .env.local
|
|
|
|
noz-studio:
|
|
build: ../noz-studio
|
|
restart: unless-stopped
|
|
ports:
|
|
- "3001:3001"
|
|
|
|
volumes:
|
|
noz-index:
|