Let's Install: Gitea, Self-Hosted Source Control

แชร์
ฝัง
  • เผยแพร่เมื่อ 1 ธ.ค. 2024

ความคิดเห็น • 30

  • @marcelrick2332
    @marcelrick2332 3 ปีที่แล้ว +17

    This is fucking cool

    • @Techdox
      @Techdox  3 ปีที่แล้ว +2

      Right?! So awesome

  • @lukewarm58
    @lukewarm58 3 ปีที่แล้ว +2

    Great tutorial. Thank you! I ended up using "image: strobi/rpi-gitea:latest" in my docker-compose file to get Gitea up and running on my RPi 4 running Raspberry Pi OS (32-bit).

  • @swiveiproduction9192
    @swiveiproduction9192 3 ปีที่แล้ว +4

    love the straight to the point videos!

    • @Techdox
      @Techdox  3 ปีที่แล้ว

      Thank you :)

  • @billgross3579
    @billgross3579 3 ปีที่แล้ว +3

    This is great! Thank you. I followed your instructions and got gitea working on my rpi. Next I want to do it again with a real database and more storage space.
    I did have to use a different container from docker hub, though ... Gitea/gitea didn't work for my pi.

    • @Techdox
      @Techdox  3 ปีที่แล้ว

      Oh really? That's good to know.

    • @gg-gn3re
      @gg-gn3re 3 ปีที่แล้ว

      You can use DietPi as well which has a checkbox to check to auto install gitea

  • @bad-dev3135
    @bad-dev3135 3 ปีที่แล้ว +1

    dude that was super easy thanks to your tutorial thank you!

    • @Techdox
      @Techdox  3 ปีที่แล้ว

      You're more than welcome :)

  • @adyanth
    @adyanth 3 ปีที่แล้ว +1

    Which is that ssh console you use to connect to the raspberry Pi? Looks cool!

    • @Techdox
      @Techdox  3 ปีที่แล้ว +1

      termius.com/ :)

    • @adyanth
      @adyanth 3 ปีที่แล้ว

      @@Techdox brilliant! Thanks!

  • @Amranwen
    @Amranwen 2 ปีที่แล้ว

    Thank you so much for this! This was really helpfull

  • @merlingt1
    @merlingt1 ปีที่แล้ว

    Thank you!

    • @Techdox
      @Techdox  ปีที่แล้ว

      You’re more than welcome :)

  • @gg-gn3re
    @gg-gn3re 3 ปีที่แล้ว

    How'd that ssh key work with the extra stuff at the end or does it ignore after the = sign?

  • @dirkpostma2135
    @dirkpostma2135 3 ปีที่แล้ว +1

    Great I have Gita on my Docker wish list also. Does it work with 32 bits os?

    • @Techdox
      @Techdox  3 ปีที่แล้ว +1

      Pretty sure it needs to be 64. I'm running 64bit Ubuntu on my Pi 4

    • @gg-gn3re
      @gg-gn3re 3 ปีที่แล้ว

      Compile it for ARM6 or 7 will work for 32bit, ARM8 is only on the newer 64bit pi oses.. like "env GOOS=linux GOARCH=arm GOARM=7 go build ." good chance apt will install the correct one if it's already supplied

  • @jamesc2327
    @jamesc2327 3 ปีที่แล้ว

    So now that youve changed the volume path will it be restricted in size or will it use the space available on that mnt location?
    The reason I ask is because when I try docker images theyre normally bound to a docket default size.

    • @Techdox
      @Techdox  3 ปีที่แล้ว

      It uses that storage on your host machine :)

    • @jamesc2327
      @jamesc2327 3 ปีที่แล้ว

      @@Techdox yes I understand that so do all docker images. What I am asking is that once youve mapped that mnt location on the compose file does the volume restrict itself to docker image defaults or does it actually have access to the HOST file system and have access to the full size?

    • @Techdox
      @Techdox  3 ปีที่แล้ว

      @@jamesc2327 it only has access to the specific path you mapped

    • @jamesc2327
      @jamesc2327 3 ปีที่แล้ว

      @@Techdox ok.. and I assume within that mapped path there is no quota correct?

    • @Techdox
      @Techdox  3 ปีที่แล้ว +1

      @@jamesc2327 corrrct, so if I mapped it to a path called mnt on my host machine and that mount has the full space available of the drive it was on, say 250GB. The docker image can use that full amount, as the storage the docker container is using is the same as the host directory it was mapped to.
      Sorry if it's taking me awhile to answer your question, I haven't had my morning coffee haha.

  • @nebelgraumichal1550
    @nebelgraumichal1550 2 ปีที่แล้ว

    Great tutorial, thanks! Is there a specific reason to place the gitea folder under mnt?

    • @Techdox
      @Techdox  2 ปีที่แล้ว

      That is where I have my mount for my external storage, so I mapped it there. You can mount it to your preferred mount point :)

    • @nebelgraumichal1550
      @nebelgraumichal1550 2 ปีที่แล้ว

      @@Techdox OK, gotcha! Finally got it to work, using the strobi/rpi-gitea:latest image. Great tutorial!