ansible-nas/tasks/thelounge.yml

30 lines
679 B
YAML
Raw Normal View History

2019-04-12 22:31:27 +00:00
---
- name: The Lounge Directories
file:
path: "{{ item }}"
state: directory
with_items:
- "{{ thelounge_data_directory }}"
- "{{ thelounge_data_directory }}/users"
- name: Set up admin user
copy:
src: files/thelounge/users/admin.json
dest: "{{ thelounge_data_directory }}/users/admin.json"
mode: 0777
- name: The Lounge Docker Container
docker_container:
name: thelounge
image: thelounge/thelounge:latest
pull: true
ports:
- "113:9001"
- "9000:9000"
volumes:
- "{{ thelounge_data_directory }}:/var/opt/thelounge"
- "/var/run/dbus:/var/run/dbus"
restart_policy: unless-stopped
memory: 1g