| 12345678910111213141516171819202122 |
- version: "3"
- services:
- heimdall:
- image: linuxserver/heimdall:latest
- container_name: heimdall
- volumes:
- - ./config:/config
- env_file:
- - .env
- ports:
- - 80:80 # 按需修改
- restart: always
- healthcheck:
- test: [CMD, nc, -z, localhost, "80"]
- interval: 30s
- timeout: 10s
- retries: 3
- networks:
- - maple-navigate
- networks:
- maple-navigate:
- name: maple-navigate
|