Deprecating old stuff that isnt used anymore
This commit is contained in:
34
deprecated/playbooks/atlas/init/clippable/main.yml
Normal file
34
deprecated/playbooks/atlas/init/clippable/main.yml
Normal file
@@ -0,0 +1,34 @@
|
||||
---
|
||||
- hosts: atlas
|
||||
become: yes
|
||||
vars:
|
||||
CLIPPABLE_ROOT: "{{ CLIPPABLE_MOUNT_POINT }}/clips"
|
||||
tasks:
|
||||
- name: Fetch vars for getting mount points
|
||||
include_vars:
|
||||
file: ../../vars/drives.yml
|
||||
- name: Create mountpoints for volumes
|
||||
file:
|
||||
state: directory
|
||||
path: "{{ CLIPPABLE_ROOT }}/{{ item }}"
|
||||
loop:
|
||||
- clips
|
||||
- thumbnails
|
||||
|
||||
- name: Pull latest Clippable Image
|
||||
community.docker.docker_container:
|
||||
name: clippable
|
||||
image: registry.gitlab.com/shockrah/clippable:latest
|
||||
pull: yes
|
||||
restart_policy: always
|
||||
recreate: yes
|
||||
env:
|
||||
SITE_NAME: "Shockrah's Clips"
|
||||
SITE_DESC: "Short clips of random stuff I do"
|
||||
SITE_URL: "https://clips.shockrah.xyz"
|
||||
ports:
|
||||
- "8482:8482"
|
||||
volumes:
|
||||
- "{{CLIPPABLE_ROOT}}/clips:/media/clips"
|
||||
- "{{CLIPPABLE_ROOT}}/thumbnails:/media/thumbnails"
|
||||
|
||||
Reference in New Issue
Block a user