Add collaborative jupyter lab

This commit is contained in:
2022-05-03 19:12:33 +02:00
parent 07b685a89b
commit 2d947ec243
4 changed files with 37 additions and 1 deletions
+14
View File
@@ -80,3 +80,17 @@
url: https://github.com/pbrinkmeier/tichy-clicker
commit: 7dfb14183c765e3661fda84a7e89c2f73ca86f26
owner: paul
- name: Add jupyter user with UID 42000
become: yes
ansible.builtin.user:
name: jupyter
uid: 42000
state: present
- name: Add Notebooks folder
become: yes
ansible.builtin.file:
path: /home/jupyter/Notebooks
owner: jupyter
group: jupyter
state: directory
mode: 0755