mirror of
https://github.com/byReqz/probehost2.git
synced 2024-11-14 11:23:13 +00:00
18 lines
425 B
YAML
18 lines
425 B
YAML
version: '2.3'
|
|
|
|
services:
|
|
probehost2:
|
|
container_name: probehost2
|
|
image: byreqz/probehost2:latest
|
|
restart: unless-stopped
|
|
environment:
|
|
- PROBEHOST_LOGPATH=/probehost2.log
|
|
- PROBEHOST_ALLOW_PRIVATE=false
|
|
- PROBEHOST_DISABLE_X_FORWARDED_FOR=false
|
|
- PROBEHOST_LISTEN_PORT=8000
|
|
- PROBEHOST_REQUEST_TTL=180
|
|
ports:
|
|
- 1234:8000
|
|
volumes:
|
|
- ./probehost2.log:/probehost2.log
|