Hi, I am using NAS from asustor. I tried to use Gitbucket. At first it looks okay, but after a while the page is down. I've got an error message about "java.sql.SQLTransientConnectionException: HikariPool-1 - Connection is not available, request timed out after 30005ms.", followed by a lot of lines. I noticed that the version 4.30.1. Could it be fixed by a newer version?
Naoki Takezoe
@takezoe
@joshchengwk If I remember correctly, nothing hasn't been changed in newer versions.
_
Marcelo Martins
@marmartins
Hi guys
Someone try to install Gitbucket on K8s?
I'm facing the problem
Error response from daemon: manifest for int128/gitbucket:4.32.0 not found
Jeffz16
@Jeffz16
Hi guys, I am working on setting up local gitbucket. I need to add direct commit restriction for a branch.
Naoki Takezoe
@takezoe
Branch protection is available.
SIkebe
@SIkebe
@takezoe IIRC, Branch protection helps to avoid rebase or branch deletion, but it has noting to do with direct commit, doesn't it?
Naoki Takezoe
@takezoe
and protect from merging pull requests without status checking. You're right.
SIkebe
@SIkebe
Thank you for your clarification!
Tony Nguyễn
@quocnho
How can I reinstall gitbucket?
SIkebe
@SIkebe
What exactly do you mean by "reinstall"?
michal5520pl
@michal5520pl
If I understand correctly what you have written, then you should delete everything from /opt/gitbucket (well, that's my configuration) and launch gitbucket again
Dear Devs, could You implement HTTPS? Is it even possible? I would help, but I only know Java
Tony Nguyễn
@quocnho
Thanks for your help! After I install, I go start via ssh. After I close ssh command. Gitbucket stop. I want to change folder, but I can not change. It always point path to older. So I want to reinstall it. Now I've reset my VPS. Thanks anyway your help!
michal5520pl
@michal5520pl
Do you have your Gitbucket on Docker?
Your Gitbucket stops, because you have to launch it in background: java -jar gitbucket.war 1> /dev/null & <--- this ampersand makes the command run on background
michal5520pl
@michal5520pl
And for changing location you need to modify GITBUCKET_HOME variable, for example: export GITBUCKET_HOME=/home/gitbucket
Matthieu Brouillard
@McFoggy
@michal5520pl for HTTPS you can serve gitbucket behind an http server (apache, nginx, caddy, ...) and do SSL termination there and proxy requests to gitbucket
@McFoggy Ok, I know this, but i meant HTTPS implemented in GitBucket natively
Adrian A.
@aadrian
@michal5520pl you can run gitbucket in Tomcat and configure it to do the ssl termination. It is however not as efficient as lettinng a native process like apache or nginx or caddy do this job.
Yan
@yaroot
it would be okayish if you also use a openssl based jsse provider. what's your use case? @michal5520pl
michal5520pl
@michal5520pl
I'm using Gitbucket with Docker and NGINX as a reverse proxy
watari3
@watari3
@michal5520pl I suggest you to use https-portal which is useful docker image to be able to support https via nginx and let's encrypt tsl file. I guess this solution is suitable for Gitbucket user.