parent
41f3543800
commit
5c0deed9ab
@ -0,0 +1,17 @@
|
|||||||
|
#!/bin/bash
|
||||||
|
#
|
||||||
|
# HOWTOish set up gocd
|
||||||
|
|
||||||
|
exit 0
|
||||||
|
|
||||||
|
echo "deb https://download.gocd.org /" | sudo tee /etc/apt/sources.list.d/gocd.list
|
||||||
|
curl https://download.gocd.org/GOCD-GPG-KEY.asc | sudo apt-key add -
|
||||||
|
sudo apt update
|
||||||
|
sudo apt install go-server
|
||||||
|
sudo systemctl start go-server
|
||||||
|
|
||||||
|
# Run this on workstation:
|
||||||
|
ssh -N -C -L 8153:localhost:8153 gocd
|
||||||
|
|
||||||
|
# On workstation, go to:
|
||||||
|
# http://127.0.0.1:8153/
|
Loading…
Reference in new issue