Compare commits
No commits in common. "f0ca964c5b306024a8e8650d38e84f7c33b7c30b" and "b043b95353ac0ea5e194790d4cb79bfcc8f20ad4" have entirely different histories.
f0ca964c5b
...
b043b95353
|
@ -12,7 +12,6 @@ postgres_passwords:
|
||||||
ttrss: xxx
|
ttrss: xxx
|
||||||
keycloak: xxx
|
keycloak: xxx
|
||||||
mastodon: xxx
|
mastodon: xxx
|
||||||
rallly: xxx
|
|
||||||
membersystem: xxx
|
membersystem: xxx
|
||||||
|
|
||||||
fider_jwt_secret: xxx
|
fider_jwt_secret: xxx
|
||||||
|
@ -50,8 +49,5 @@ mastodon_secrets:
|
||||||
vapid_private_key: xxx
|
vapid_private_key: xxx
|
||||||
vapid_public_key: xxx
|
vapid_public_key: xxx
|
||||||
|
|
||||||
rallly_secrets:
|
|
||||||
secret_password: xxx
|
|
||||||
|
|
||||||
membersystem_secrets:
|
membersystem_secrets:
|
||||||
secret_key: xxx
|
secret_key: xxx
|
||||||
|
|
|
@ -26,7 +26,6 @@
|
||||||
- mailu
|
- mailu
|
||||||
- portainer
|
- portainer
|
||||||
- mastodon
|
- mastodon
|
||||||
- rallly
|
|
||||||
- membersystem
|
- membersystem
|
||||||
|
|
||||||
smtp_host: "postfix"
|
smtp_host: "postfix"
|
||||||
|
|
|
@ -101,17 +101,12 @@ postfix:
|
||||||
- "{{ passit.domain }}"
|
- "{{ passit.domain }}"
|
||||||
- "{{ gitea.domain }}"
|
- "{{ gitea.domain }}"
|
||||||
- "{{ mastodon.domain }}"
|
- "{{ mastodon.domain }}"
|
||||||
- "{{ rallly.domain }}"
|
|
||||||
- "{{ membersystem.domain }}"
|
- "{{ membersystem.domain }}"
|
||||||
|
|
||||||
mastodon:
|
mastodon:
|
||||||
domain: "social.{{ base_domain }}"
|
domain: "social.{{ base_domain }}"
|
||||||
volume_folder: "{{ volume_root_folder }}/mastodon"
|
volume_folder: "{{ volume_root_folder }}/mastodon"
|
||||||
|
|
||||||
rallly:
|
|
||||||
domain: "when.{{ base_domain }}"
|
|
||||||
volume_folder: "{{ volume_root_folder }}/rallly"
|
|
||||||
|
|
||||||
membersystem:
|
membersystem:
|
||||||
domain: "member.{{ base_domain }}"
|
domain: "member.{{ base_domain }}"
|
||||||
django_admins: "Vidir:valberg@orn.li"
|
django_admins: "Vidir:valberg@orn.li"
|
||||||
|
|
|
@ -1,9 +0,0 @@
|
||||||
NEXT_PUBLIC_BASE_URL="https://:{{ rallly.domain }}"
|
|
||||||
DATABASE_URL="postgres://postgres:{{ postgres_passwords.rallly }}@postgres:5432/rallly_db"
|
|
||||||
SECRET_PASSWORD="{{ rallly_secrets.secret_password }}"
|
|
||||||
SUPPORT_EMAIL="noreply@{{ rallly.domain }}"
|
|
||||||
SMTP_HOST="{{ smtp_host }}"
|
|
||||||
SMTP_PORT="{{ smtp_port }}"
|
|
||||||
SMTP_SECURE="false"
|
|
||||||
SMTP_USER=
|
|
||||||
SMTP_PWD=
|
|
|
@ -1,60 +0,0 @@
|
||||||
- name: Create rallly volume folders
|
|
||||||
file:
|
|
||||||
name: "{{ rallly.volume_folder }}/postgres"
|
|
||||||
state: directory
|
|
||||||
|
|
||||||
- name: Copy Rallly environment file
|
|
||||||
template:
|
|
||||||
src: files/configs/rallly/env_file
|
|
||||||
dest: "{{ rallly.volume_folder }}/env_file"
|
|
||||||
|
|
||||||
- name: Set up Rallly
|
|
||||||
docker_compose:
|
|
||||||
project_name: "rallly"
|
|
||||||
pull: "yes"
|
|
||||||
definition:
|
|
||||||
version: "3.8"
|
|
||||||
services:
|
|
||||||
postgres:
|
|
||||||
image: "postgres:14-alpine"
|
|
||||||
restart: "unless-stopped"
|
|
||||||
shm_size: "256mb"
|
|
||||||
networks:
|
|
||||||
rallly_internal:
|
|
||||||
volumes:
|
|
||||||
- "{{ rallly.volume_folder }}/postgres:/var/lib/postgresql/data"
|
|
||||||
environment:
|
|
||||||
POSTGRES_PASSWORD: "{{ postgres_passwords.rallly }}"
|
|
||||||
POSTGRES_DB: "rallly_db"
|
|
||||||
healthcheck:
|
|
||||||
test: ["CMD-SHELL", "pg_isready -U postgres"]
|
|
||||||
interval: 5s
|
|
||||||
timeout: 5s
|
|
||||||
retries: 5
|
|
||||||
labels:
|
|
||||||
com.centurylinklabs.watchtower.enable: "true"
|
|
||||||
|
|
||||||
rallly:
|
|
||||||
image: "lukevella/rallly:latest"
|
|
||||||
restart: "unless-stopped"
|
|
||||||
networks:
|
|
||||||
rallly_internal:
|
|
||||||
external_services:
|
|
||||||
postfix:
|
|
||||||
ports:
|
|
||||||
- "3000:3000"
|
|
||||||
depends_on:
|
|
||||||
rallly_db:
|
|
||||||
condition: "service_healthy"
|
|
||||||
env_file:
|
|
||||||
- "{{ rallly.volume_folder }}/env_file"
|
|
||||||
labels:
|
|
||||||
com.centurylinklabs.watchtower.enable: "true"
|
|
||||||
|
|
||||||
networks:
|
|
||||||
rallly_internal:
|
|
||||||
internal: true
|
|
||||||
external_services:
|
|
||||||
external: true
|
|
||||||
postfix:
|
|
||||||
external: true
|
|
Loading…
Reference in a new issue