2019年7月25日 星期四

有點需要畫個向量圖檔

安裝inkscape

sudo add-apt-repository ppa:inkscape.dev/stable
sudo apt update && sudo apt install inkscape
再來進入preferences將快捷鍵換成illustrator


來個稱手的小畫家吧

在linux上當然沒得解釋,只能裝個gimp用用
但是純GIMP的快捷鍵真的很難適應,因此我一定要把它換成跟photoshop很接近
這樣才會有『這個小畫家用起來很PRO』的感覺


2019年7月9日 星期二

用docker安裝gitlab ee

sudo docker run --detach \
  --hostname lab.icekimo.idv.tw \
  --publish 80:80 --publish 2222:22 \
  --name gitlab \
  --restart always \
  --volume /srv/gitlab/config:/etc/gitlab:Z \
  --volume /srv/gitlab/logs:/var/log/gitlab:Z \
  --volume /srv/gitlab/data:/var/opt/gitlab:Z \
  gitlab/gitlab-ee:latest