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!
Browse Source

Started working on the Gitea example

tags/0.92
parent
commit
4d62947707
4 changed files with 17 additions and 0 deletions
  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 View File

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

example/Fockerfile → example/dummy/Fockerfile View File


example/focker-compose.yml → example/dummy/focker-compose.yml View File


+ 15
- 0
example/gitea/Fockerfile View File

@@ -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

Loading…
Cancel
Save