2023-05-25 07:17:58 +00:00
|
|
|
version: '3.3' # 指定docker-compose 版本
|
|
|
|
services: # 要拉起的服务们
|
|
|
|
certd:
|
|
|
|
build:
|
|
|
|
context: ./
|
|
|
|
dockerfile: Dockerfile
|
|
|
|
image: registry.cn-shenzhen.aliyuncs.com/handsfree/certd:${TAG}
|
|
|
|
container_name: certd # 容器名
|
|
|
|
restart: unless-stopped # 重启
|
|
|
|
ports: # 端口映射
|
|
|
|
- "7001:7001"
|
|
|
|
environment:
|
|
|
|
- TZ=Asia/Shanghai
|
2023-07-03 10:19:00 +00:00
|
|
|
- node_sqlite3_binary_host_mirror=https://registry.npmmirror.com/-/binary/sqlite3
|
2023-05-25 07:17:58 +00:00
|
|
|
|