File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -7,9 +7,16 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
77
88## [ Unreleased]
99
10+ ## [ 0.1.1] - 2026-03-27
11+
12+ ### Fixed
13+
14+ - Fixed entrypoint overwrite
15+
1016## [ 0.1.0] - 2026-03-27
1117
1218- First release
1319
14- [ Unreleased ] : https://github.com/LiteLDev/docker-levistone-server/compare/v0.1.0...HEAD
20+ [ Unreleased ] : https://github.com/LiteLDev/docker-levistone-server/compare/v0.1.1...HEAD
21+ [ 0.1.1 ] : https://github.com/LiteLDev/docker-levistone-server/compare/v0.1.0...v0.1.1
1522[ 0.1.0 ] : https://github.com/LiteLDev/docker-levistone-server/releases/tag/v0.1.0
Original file line number Diff line number Diff line change @@ -11,7 +11,7 @@ docker run -d -it -e EULA=TRUE -p 19132:19132/udp -v levistone-server-data:/data
1111```
1212
1313``` sh
14- docker run -d -it -e EULA=TRUE -e GITHUB_MIRROR_URL=https://github.bibk.top -e PYPI_MIRROR_URL=https://mirrors.tuna.tsinghua.edu.cn/pypi/web/simple -p 19132:19132/udp -v levistone-server-data:/data ghcr.nju.edu.cn/liteldev/levistone-server:latest-wine
14+ docker run -d -it -e EULA=TRUE -e GO_MODULE_PROXY_URL=https://goproxy.cn -e GITHUB_MIRROR_URL=https://github.bibk.top -e PYPI_MIRROR_URL=https://mirrors.tuna.tsinghua.edu.cn/pypi/web/simple -p 19132:19132/udp -v levistone-server-data:/data ghcr.nju.edu.cn/liteldev/levistone-server:latest-wine
1515```
1616
1717或者,如果您想使用 Windows 容器,请运行第一条命令;如果您的服务器在中国大陆,请运行第二条命令以更快快速地安装:
@@ -21,7 +21,7 @@ docker run -d -it -e EULA=TRUE -p 19132:19132/udp -v levistone-server-data:C:\da
2121```
2222
2323``` sh
24- docker run -d -it -e EULA=TRUE -e GITHUB_MIRROR_URL=https://github.bibk.top -e PYPI_MIRROR_URL=https://mirrors.tuna.tsinghua.edu.cn/pypi/web/simple -p 19132:19132/udp -v levistone-server-data:C:\d ata ghcr.nju.edu.cn/liteldev/levistone-server:latest-windows
24+ docker run -d -it -e EULA=TRUE -e GO_MODULE_PROXY_URL=https://goproxy.cn -e GITHUB_MIRROR_URL=https://github.bibk.top -e PYPI_MIRROR_URL=https://mirrors.tuna.tsinghua.edu.cn/pypi/web/simple -p 19132:19132/udp -v levistone-server-data:C:\d ata ghcr.nju.edu.cn/liteldev/levistone-server:latest-windows
2525```
2626
2727### 环境变量
Original file line number Diff line number Diff line change 11FROM ghcr.io/liteldev/levilamina-server:latest-windows
22
3+ COPY entrypoint.cmd C:\e ntrypoint.cmd
4+
35ENTRYPOINT ["entrypoint.cmd" ]
Original file line number Diff line number Diff line change 11FROM ghcr.io/liteldev/levilamina-server:latest-wine
22
3+ COPY entrypoint.sh /usr/local/bin/entrypoint.sh
4+ RUN chmod +x /usr/local/bin/entrypoint.sh
5+
36ENTRYPOINT ["entrypoint.sh" ]
You can’t perform that action at this time.
0 commit comments