14 lines
374 B
YAML
14 lines
374 B
YAML
|
version: "3.5"
|
||
|
services:
|
||
|
dispatch:
|
||
|
container_name: dispatch
|
||
|
image: khlieng/dispatch
|
||
|
security_opt:
|
||
|
- no-new-privileges:true
|
||
|
restart: unless-stopped
|
||
|
ports:
|
||
|
- ${DISPATCH_WEBUI_PORT_HTTP:-80}:80
|
||
|
- ${DISPATCH_WEBUI_PORT_HTTPS:-443}:443
|
||
|
env_file: .env
|
||
|
volumes:
|
||
|
- ${DISPATCH_DATA:-/home/docker/dispatch/data}:/data
|