mirror of
https://github.com/alexankitty/Myrient-Search-Engine.git
synced 2026-01-15 08:23:18 -03:00
19 lines
430 B
YAML
19 lines
430 B
YAML
version: '3.8'
|
|
|
|
services:
|
|
myrient-search:
|
|
image: ghcr.io/alexankitty/myrient-search-engine:latest
|
|
ports:
|
|
- "8062:8062"
|
|
environment:
|
|
- PORT=8062
|
|
- BIND_ADDRESS=0.0.0.0
|
|
- FORCE_FILE_REBUILD=0
|
|
- DEBUG=0
|
|
- NODE_ENV=production
|
|
- MAX_JOB_QUEUE=1000
|
|
- MAX_FETCH_JOBS=1000
|
|
- INSTANCE_NAME=Myrient
|
|
volumes:
|
|
- ./data:/usr/src/app/data
|
|
restart: unless-stopped |