29 lines
573 B
YAML
29 lines
573 B
YAML
name: dht-search
|
|
|
|
services:
|
|
dht-search:
|
|
image: dht-search:dev
|
|
build:
|
|
context: .
|
|
dockerfile: Dockerfile
|
|
init: true
|
|
restart: unless-stopped
|
|
stop_grace_period: 120s
|
|
ports:
|
|
- "${DHT_HTTP_BIND:-127.0.0.1:8080}:8080/tcp"
|
|
- "${DHT_UDP_PORT:-12313}:12313/udp"
|
|
volumes:
|
|
- ./config.toml:/dht-search/config.toml
|
|
- dht-search-data:/dht-search/data
|
|
ulimits:
|
|
nofile:
|
|
soft: 65536
|
|
hard: 65536
|
|
security_opt:
|
|
- no-new-privileges:true
|
|
cap_drop:
|
|
- ALL
|
|
|
|
volumes:
|
|
dht-search-data:
|