This commit is contained in:
EXP
2021-05-20 22:44:20 +08:00
commit d68fc30935
24 changed files with 457 additions and 0 deletions

14
license/Dockerfile Normal file
View File

@@ -0,0 +1,14 @@
# -----------------------------------------------------------------------------
# How to Crack Gitlab :
# https://blog.starudream.cn/2020/01/19/6-crack-gitlab/
# -----------------------------------------------------------------------------
FROM ruby
WORKDIR /opt
RUN gem install gitlab-license
ADD ./license.rb /opt/license.rb
RUN ruby license.rb
CMD [ "bash" ]