IF YOU WOULD LIKE TO GET AN ACCOUNT, please write an email to s dot adaszewski at gmail dot com. User accounts are meant only to report issues and/or generate pull requests. This is a purpose-specific Git hosting for ADARED projects. Thank you for your understanding!
소스 검색

Started working on the Gitea example

tags/0.92
부모
커밋
4d62947707
4개의 변경된 파일17개의 추가작업 그리고 0개의 파일을 삭제
  1. +2
    -0
      .gitignore
  2. +0
    -0
      example/dummy/Fockerfile
  3. +0
    -0
      example/dummy/focker-compose.yml
  4. +15
    -0
      example/gitea/Fockerfile

+ 2
- 0
.gitignore 파일 보기

@@ -2,3 +2,5 @@ __pycache__
/build/
/dist/
/MANIFEST
/change_author.sh
/mymailmap

example/Fockerfile → example/dummy/Fockerfile 파일 보기


example/focker-compose.yml → example/dummy/focker-compose.yml 파일 보기


+ 15
- 0
example/gitea/Fockerfile 파일 보기

@@ -0,0 +1,15 @@
base: freebsd-latest
steps:
- run:
- pkg install -y gmake go node npm
- run:
- fetch https://github.com/go-gitea/gitea/releases/download/v1.11.4/gitea-src-1.11.4.tar.gz
- mkdir gitea-build
- cd gitea-build
- tar -zvxf ../gitea-src-1.11.4.tar.gz
- run:
- cd gitea-build
- TAGS="sqlite sqlite_unlock_notify pam" gmake build
- run:
- pkg install git

불러오는 중...
취소
저장