-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy path2.yml
19 lines (19 loc) · 1.19 KB
/
2.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
version: "2.0"
services:
jd:
image: registry.cn-hangzhou.aliyuncs.com/supermanito/helloworld:latest # 镜像名,可以使用阿里云仓库的备用镜像
container_name: jd # 容器名(可随意更改)
hostname: jd # 主机名(可随意更改)
restart: always # 开机自启
tty: true
network_mode: host # 容器网络类型,如果是旁路由可能需要切换为 host 类型(桥接),默认为 NAT
volumes:
- /opt/jd/config:/jd/config # 定义配置文件的主机挂载目录
- /opt/jd/log:/jd/log # 定义日志文件的主机挂载目录
- /opt/jd/scripts:/jd/scripts # 定义 Scripts 主要仓库的主机挂载目录
- /opt/jd/own:/jd/own # 定义 Own 扩展仓库和扩展脚本的主机挂载目录
# - /opt/jd/jbot:/jd/jbot # 定义电报机器人的主机挂载目录
environment:
- ENABLE_ALL_ENV=true # 是否在容器启动时预装环境包与常用模块
- ENABLE_WEB_PANEL=true # 是否在容器启动时开启控制面板服务
- ENABLE_TG_BOT=false # 是否在容器启动时开启电报机器人服务