You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
390 B
18 lines
390 B
#!/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/
|