ew/docker/docker-compose.yml
2025-01-05 22:33:17 +08:00

43 lines
1.4 KiB
YAML
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

version: '3'
services:
lovelive_sif2:
image: zhushenwudi/lovelive-sif2:1.0.0
container_name: sif2
environment:
# Server URL是否存在SSL/TSL加密协议
HTTPS: false
# 是否允许内部启动资源服务
ENABLE_ASSET_SERVER: false
# <数据迁移> SIF1服务器地址
#NPPS4_ADDRESS: "http://127.0.0.1:51376"
# 服务器默认时间,建议设置到开服时间,最大设置为关服时间
MAXTIME: 1736076211
# 是否隐藏WebUI
HIDDEN: false
# 是否禁用账号导入
DISABLE_IMPORTS: false
# 是否禁用账号导出
DISABLE_EXPORTS: false
# 以下内容出现在Help界面
# 未签名的apk下载地址
ANDROID_JAPAN: "http://fir.zhushenwudi.top/n2tvzrhl"
#ANDROID_GLOBAL: "link.to/patched/android/global.apk"
# 脱壳的ipa下载地址
#IOS_JAPAN: "link.to/ios/jp.ipa"
#IOS_GLOBAL: "link.to/ios/global.ipa"
#ASSET_URL: "link.to/client/assets/"
ports:
# 只修改左侧本地端口
# Server URL 端口
- "8080:8080"
# Assets URL 端口
- "8000:8000"
volumes:
# 只修改左侧本地路径
# 数据库存放路径(建议添加)
- ./data:/data
# 资源文件存放路径搭建assets server需要指定本地资源路径
- ./assets:/assets
restart: unless-stopped