homelab/roles/mastodon/tasks/mastodon.yml

65 lines
1.7 KiB
YAML
Raw Normal View History

2024-09-29 18:04:34 +05:00
---
- name: Create mastodon's public volume
become: true
community.docker.docker_volume:
name: mastodon-public-system
- name: Create mastodon config directory
become: true
ansible.builtin.file:
path: /etc/mastodon
state: directory
mode: '1750'
owner: root
group: root
- name: Copy env file
become: true
ansible.builtin.template:
src: mastodon.env.j2
dest: /etc/mastodon/.env
mode: '0660'
owner: root
group: root
- name: Create web container
become: true
community.docker.docker_container:
name: mastodon-web
2024-10-14 21:10:11 +05:00
image: ghcr.io/mastodon/mastodon:{{ version }}
2024-09-29 18:04:34 +05:00
env_file: /etc/mastodon/.env
command: ["bundle", "exec", "puma", "-C", "config/puma.rb"]
networks:
- name: redis-mastodon
- name: postgresql
- name: minio
ports:
- 127.0.0.1:3000:3000
volumes:
- mastodon-public-system:/mastodon/public/system
restart_policy: unless-stopped
- name: Create streaming container
become: true
community.docker.docker_container:
name: mastodon-streaming
2024-10-14 21:10:11 +05:00
image: ghcr.io/mastodon/mastodon-streaming:{{ version }}
2024-09-29 18:04:34 +05:00
env_file: /etc/mastodon/.env
command: ["node", "./streaming/index.js"]
networks:
- name: redis-mastodon
- name: postgresql
ports:
- 127.0.0.1:3001:4000
restart_policy: unless-stopped
- name: Create sidekiq container
become: true
community.docker.docker_container:
name: mastodon-sidekiq
2024-10-14 21:10:11 +05:00
image: ghcr.io/mastodon/mastodon:{{ version }}
2024-09-29 18:04:34 +05:00
env_file: /etc/mastodon/.env
command: ["bundle", "exec", "sidekiq"]
networks:
- name: redis-mastodon
- name: postgresql
- name: minio
volumes:
- mastodon-public-system:/mastodon/public/system
restart_policy: unless-stopped