Skip to content

Commit 7356044

Browse files
committed
fix: fix entrypoint rewrite
1 parent 1881314 commit 7356044

4 files changed

Lines changed: 15 additions & 3 deletions

File tree

CHANGELOG.md

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff 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

README.zh.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff 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:\data 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:\data ghcr.nju.edu.cn/liteldev/levistone-server:latest-windows
2525
```
2626

2727
### 环境变量

windows/Dockerfile

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
11
FROM ghcr.io/liteldev/levilamina-server:latest-windows
22

3+
COPY entrypoint.cmd C:\entrypoint.cmd
4+
35
ENTRYPOINT ["entrypoint.cmd"]

wine/Dockerfile

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
11
FROM 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+
36
ENTRYPOINT ["entrypoint.sh"]

0 commit comments

Comments
 (0)