diff --git a/concourse_worker.sh b/concourse_worker.sh index 252350d..8b6fca4 100755 --- a/concourse_worker.sh +++ b/concourse_worker.sh @@ -2,12 +2,11 @@ # This is used to debug and will not daemonize or restart # To run this in production remove the `--rm` flag and replace with `-d --restart unless-stopped` -tsa_container=$(cloudron list | awk '/io.concourse.cloudron/{print $1;}') +tsa_container=$(cloudron list | awk '/ci.concourse.cloudron/{print $1;}') tsa_hostname=$(cloudron exec --app $tsa_container env | grep HOSTNAME | sed s/.*=//) tsa_port=$(cloudron exec --app $tsa_container env | grep TSA_PORT | sed s/.*=//) -docker run \ +sudo docker run \ --rm \ - --name concourse_worker \ --privileged \ --network cloudron \ --volumes-from $tsa_container \