From 1fa62556ec732b61a9312b9db10b3ae41df03f3f Mon Sep 17 00:00:00 2001 From: David Rotermund Date: Sat, 13 Jul 2024 18:34:51 +0200 Subject: [PATCH] Delete install_user_controller.yaml --- install_user_controller.yaml | 36 ------------------------------------ 1 file changed, 36 deletions(-) delete mode 100644 install_user_controller.yaml diff --git a/install_user_controller.yaml b/install_user_controller.yaml deleted file mode 100644 index 4736734..0000000 --- a/install_user_controller.yaml +++ /dev/null @@ -1,36 +0,0 @@ ---- - -- name: install overleaf fedora controller - hosts: all - become: true - - tasks: - - - name: Create a volume - community.docker.docker_volume: - name: overleaf_python - state: present - - - name: Create overleaf python container - community.docker.docker_container: - name: overleafpython - image: "python:3.11.9-alpine3.19" - state: started - recreate: no - restart_policy: always - command: sleep infinity - - volumes: - - "overleaf_python:/data" - - "/var/run/docker.sock:/var/run/docker.sock" - - networks: - - name: OverleafNet - - comparisons: - networks: strict - - - - -