Stop using DIND for CI

Seems to not play nicely with LXC, and given it runs in its own container already, it's probably fine.
This commit is contained in:
Jake Howard
2024-09-09 12:07:47 +01:00
parent 5706a97b4d
commit 66036cd301
2 changed files with 23 additions and 16 deletions

View File

@ -6,18 +6,10 @@
mode: "{{ docker_compose_directory_mask }}"
become: true
- name: Create data directory
file:
path: /opt/forgejo-runner/data
state: directory
mode: "700"
owner: "{{ docker_user.name }}"
become: true
- name: Install config file
template:
src: files/config.yml
dest: /opt/forgejo-runner/data/config.yml
dest: /opt/forgejo-runner/config.yml
mode: "600"
owner: "{{ docker_user.name }}"
notify: restart forgejo-runner