Running gitlab community edition on Rock64
#1
Question 
Hi,

I want to run gitlab community edition for testing purpose , 
Looking at Requirements page I think it should work: https://docs.gitlab.com/ee/install/requirements.html

however if anyone has any good point to through or have experience running gitlab on Rock64 please share !
#2
(05-10-2018, 09:26 AM)seaurchin Wrote: Hi,

I want to run gitlab community edition for testing purpose , 
Looking at Requirements page I think it should work: https://docs.gitlab.com/ee/install/requirements.html

however if anyone has any good point to through or have experience running gitlab on Rock64 please share !

Though I do not have it yet running on Rock64 you may want to try Gogs: https://gogs.io/

I used Gitlab for a while but find Gogs much lighter and for me, it has more features.
#3
The requirements neglect to mention the required/supported architectures... which arm64 / aarch64 is not one of... 

https://gitlab.com/gitlab-org/gitlab-ce/issues/21844

Having said, if you follow the link in the comment by Joridi, you'll see that somebody has gotten Gitlab CE running on arm64 architecture.

I would also recommend gogs though... much lighter, and quite easy to run up (on the pine64 at least, so should be no problem on the rock64).
#4
Hi

I am able to test gitlab-ce  in OMV4 docker in armhf version. 
It use about ~ 1Gb out of my 4G from Rock64

Code:
#docker stats gitlab

CONTAINER ID        NAME                CPU %               MEM USAGE / LIMIT     MEM %               NET I/O             BLOCK I/O           PIDS
xxxxxxxxxdca        gitlab              9.90%               1.168GiB / 3.832GiB   30.49%              4.99MB / 624kB      298MB / 298MB       155

First pull from https://hub.docker.com/r/ulm0/gitlab/; thanks to ulm0 at https://github.com/ulm0/gitlab
Code:
docker pull ulm0/gitlab

Here is config container, replace example with your variables...important to config GITLAB_OMNIBUS_CONFIG
Code:
docker create  \
--hostname EXAMPLE.COM \
--env GITLAB_OMNIBUS_CONFIG="external_url 'https://EXAMPLE.COM:81/';nginx['listen_https'] = false;nginx['redirect_http_to_https'] = false;gitlab_rails['gitlab_shell_ssh_port'] = 24;postgresql['enable'] = false;postgresql['shared_buffers'] = '56MB';prometheus_monitoring['enable'] = false;unicorn['worker_processes'] = 2;sidekiq['concurrency'] = 1;gitlab_rails['db_adapter'] = 'postgresql';gitlab_rails['db_encoding'] = 'utf8';gitlab_rails['db_host'] = 'YOUR_ROCK_IP';gitlab_rails['db_port'] = 5432;gitlab_rails['db_username'] = 'DB_USERNAME';gitlab_rails['db_password'] = 'DB_PASSWORD';gitlab_rails['db_database'] = 'GITLAB_DB';gitlab_rails['smtp_enable'] = true;gitlab_rails['smtp_address'] = 'MAIL.EXAMPLE.COM';gitlab_rails['smtp_port'] = 587;gitlab_rails['smtp_user_name'] = 'ADMIN@EXAMPLE.COM';gitlab_rails['smtp_password'] = 'MAIL_PASSWORLD';gitlab_rails['smtp_domain'] = 'MAIL.EXAMPLE.com';gitlab_rails['smtp_authentication'] = 'login';gitlab_rails['smtp_enable_starttls_auto'] = true;" \
-p 0.0.0.0:443:443 -p 0.0.0.0:8081:81 -p 0.0.0.0:24:22 \
--name gitlab \
-v /srv/YOUR_MOUNT/gitlab/config:/etc/gitlab \
-v /srv/YOUR_MOUNT/gitlab/logs:/var/log/gitlab \
-v /srv/YOUR_MOUNT/gitlab/data:/var/opt/gitlab \
ulm0/gitlab

Nginx proxy:
Code:
location / {

   gzip off;
   client_body_buffer_size 128k;
   client_max_body_size 0;

   proxy_buffer_size 16k;
   proxy_buffers 32 16k;
   proxy_busy_buffers_size 64k;
   proxy_connect_timeout 60;
   proxy_intercept_errors on;
   proxy_next_upstream error timeout;
   proxy_redirect off;
   proxy_send_timeout 90;

   proxy_set_header X-Real-IP $remote_addr;
   proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
   proxy_set_header X-Forwarded-Proto https;
   proxy_set_header X-Forwarded-Host $http_host;
   proxy_set_header Host $http_host;
   proxy_temp_file_write_size 64k;
   proxy_pass http://localhost:8081;


}
#5
(05-10-2018, 09:26 AM)seaurchin Wrote: Hi,

I want to run gitlab community edition for testing purpose , 
Looking at Requirements page I think it should work: https://docs.gitlab.com/ee/install/requirements.html

however if anyone has any good point to through or have experience running gitlab on Rock64 please share !


This gitlab package for debian stretch works for me so far, just `sudo apt-get install gitlab`
https://packages.debian.org/search?suite...rds=gitlab
https://packages.debian.org/stretch/gitlab


Possibly Related Threads…
Thread Author Replies Views Last Post
  Rock64 No Audio @ Debian 12 dmitrymyadzelets 1 113 03-18-2024, 06:56 AM
Last Post: diederik
  Rock64 bricked shawwwn 7 5,449 03-17-2024, 12:22 PM
Last Post: dmitrymyadzelets
  Rock64 won't boot luminosity7 10 3,864 03-16-2024, 08:33 AM
Last Post: dmitrymyadzelets
  Rock64 doesn't boot dstallmo 1 255 03-16-2024, 08:29 AM
Last Post: dmitrymyadzelets
  How well does Rock64 deal with HDR and Atmos on Kodi? drvlikhell 3 1,770 04-29-2023, 04:24 AM
Last Post: newestssd
  OpenWRT on the Rock64 CanadianBacon 12 7,790 04-24-2023, 12:40 PM
Last Post: arunkhan
  Rock64 board not working, no HDMI no Ethernet. EDited 3 3,396 01-17-2023, 02:31 PM
Last Post: Flagtrax
  ROCK64 v3 can it boot from USB? Tsagualsa 4 1,974 11-29-2022, 11:31 AM
Last Post: Macgyver
  rock64 v3 spiflash Macgyver 0 703 11-28-2022, 02:18 PM
Last Post: Macgyver
  my rock64 dosen't work rookie_267 0 906 10-07-2022, 07:50 PM
Last Post: rookie_267

Forum Jump:


Users browsing this thread: 2 Guest(s)