🎉 init: 初始化项目文件,包括环境变量、Dockerfile、Compose配置和启动脚本

This commit is contained in:
2025-05-05 13:31:47 +08:00
commit a678f4b3b8
4 changed files with 94 additions and 0 deletions

9
Containerfile Normal file
View File

@@ -0,0 +1,9 @@
FROM zerotier/zerotier:latest
EXPOSE 9993/udp
COPY startup.sh /startup.sh
ENTRYPOINT [ "/startup.sh" ]