diff --git a/host-pottwal.yml b/host-pottwal.yml
index 78abefc..83bc77a 100644
--- a/host-pottwal.yml
+++ b/host-pottwal.yml
@@ -42,14 +42,16 @@
       ansible.builtin.stat:
         path: "{{ data_dir }}/forgejo"
       register: forgejo_dir
+      tags: ["forgejo"]
     - name: Fail if forgejo data dir does not exist
       ansible.builtin.fail:
         msg: "Forgejo data dir is missing, please restore from the backup!"
       when: not forgejo_dir.stat.exists
+      tags: ["forgejo"]
 
     # If port 2222 is changed here, it must also be adapted
     # in the forgejo config file (see application volume)!!
-    - name: Setup the docker container for gitea
+    - name: Setup the docker container for forgejo
       docker_container:
         name: forgejo
         image: "{{ forgejo_image }}"
@@ -73,6 +75,7 @@
           USER_GID: "1000"
         volumes:
           - "{{ data_dir }}/forgejo:/data:rw"
+      tags: ["forgejo"]
 
     - name: Setup proxy site "{{ forgejo_domain_name }}"
       include_role:
@@ -80,6 +83,7 @@
       vars:
         site_name: "{{ forgejo_domain_name }}"
         proxy_port: "{{ forgejo_host_port }}"
+      tags: ["forgejo"]
 
     - name: Ensure apt-cacher container is running
       docker_container: