<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>gitlab runner &#8211; SMsoft &#8211; informatica e dintorni</title>
	<atom:link href="https://blog.smsoft.it/tag/gitlab-runner/feed/" rel="self" type="application/rss+xml" />
	<link>https://blog.smsoft.it</link>
	<description>consigli settimanali su MacOS, GNU/Linux ed Open Source</description>
	<lastBuildDate>Mon, 20 Jul 2026 16:06:54 +0000</lastBuildDate>
	<language>it-IT</language>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	<generator>https://wordpress.org/?v=71900</generator>
	<item>
		<title>Debian 13: Installare GitLab Runner</title>
		<link>https://blog.smsoft.it/2026/05/12/debian-13-installare-gitlab-runner/</link>
					<comments>https://blog.smsoft.it/2026/05/12/debian-13-installare-gitlab-runner/#respond</comments>
		
		<dc:creator><![CDATA[admin]]></dc:creator>
		<pubDate>Tue, 12 May 2026 08:30:00 +0000</pubDate>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[Debian]]></category>
		<category><![CDATA[git]]></category>
		<category><![CDATA[gitlab]]></category>
		<category><![CDATA[gitlab runner]]></category>
		<guid isPermaLink="false">https://blog.smsoft.it/?p=7038</guid>

					<description><![CDATA[GitLab runner consente di avviare runner che possono Per l&#8217;isntallazione bastano pochi comandi: Poi accediamo all&#8217;interfaccia web di GitLab, andiamo nel progetto che ci interessa, poi &#8220;Settings&#8221; e &#8220;CI/CD&#8220;. Qui apriamo la sezione &#8220;Runners&#8221; e clicchiamo sul pulsante &#8220;Create project runner&#8220;. La procedura mostrerà un comando da scrivere nel terminale per agganciare il runner del ... <a title="Debian 13: Installare GitLab Runner" class="read-more" href="https://blog.smsoft.it/2026/05/12/debian-13-installare-gitlab-runner/" aria-label="Per saperne di più su Debian 13: Installare GitLab Runner">Leggi tutto</a>]]></description>
										<content:encoded><![CDATA[
<p class="wp-block-paragraph">GitLab runner consente di avviare runner che possono</p>



<p class="wp-block-paragraph">Per l&#8217;isntallazione bastano pochi comandi:</p>



<pre class="wp-block-code"><code>curl -L https://packages.gitlab.com/install/repositories/runner/gitlab-runner/script.deb.sh | bash
apt-get install -y gitlab-runner
</code></pre>



<p class="wp-block-paragraph">Poi accediamo all&#8217;interfaccia web di <strong>GitLab</strong>, andiamo nel progetto che ci interessa, poi &#8220;<strong>Settings</strong>&#8221; e &#8220;<strong>CI/CD</strong>&#8220;. Qui apriamo la sezione &#8220;<strong>Runners</strong>&#8221; e clicchiamo sul pulsante &#8220;<strong>Create project runner</strong>&#8220;. La procedura mostrerà un comando da scrivere nel terminale per agganciare il runner del progetto, in particolare c&#8217;è una chiave che serve per abilitare il runner. Recuperiamo la chiave e poi digitiamo:</p>



<pre class="wp-block-code"><code>sudo gitlab-runner register \
  --non-interactive \
  --url "SITE_URL" \
  --token "RUNNER_TOKEN" \
  --executor "docker" \
  --docker-image alpine:latest \
  --docker-pull-policy "if-not-present" \
  --description "docker-runner"</code></pre>



<p class="wp-block-paragraph">sostituendo <strong>SITE_URL</strong> con l&#8217;url del sito dove avete installato <strong>GitLab</strong> e <strong>RUNNER_TOKEN</strong> con il token recuperato nella procedura &#8220;<strong>Create project runner</strong>&#8221; avviata prima.</p>



<p class="wp-block-paragraph">enjoy!</p>
]]></content:encoded>
					
					<wfw:commentRss>https://blog.smsoft.it/2026/05/12/debian-13-installare-gitlab-runner/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
	</channel>
</rss>
