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

読み込み中…
キャンセル
保存