16 lines
390 B
YAML
16 lines
390 B
YAML
version: "3.9"
|
|
services:
|
|
hysteria:
|
|
image: tobyxdd/hysteria:latest
|
|
container_name: hysteria
|
|
restart: always
|
|
network_mode: "host"
|
|
volumes:
|
|
- acme:/acme
|
|
- ./hysteria.yaml:/etc/hysteria.yaml
|
|
- ./key/server.crt:/etc/hysteria/server.crt
|
|
- ./key/server.key:/etc/hysteria/server.key
|
|
command: ["server", "-c", "/etc/hysteria.yaml"]
|
|
volumes:
|
|
acme:
|