Hardcode NodeBB version and add email capability

This commit is contained in:
Sam Al-Sapti 2025-02-15 22:38:24 +01:00
parent e8583c606a
commit 9d7de257fa
No known key found for this signature in database
GPG key ID: CBBBE7371E81C4EA
2 changed files with 5 additions and 1 deletions

View file

@ -223,8 +223,9 @@ services:
domain: "forum.{{ base_domain }}" domain: "forum.{{ base_domain }}"
volume_folder: "{{ volume_root_folder }}/nodebb" volume_folder: "{{ volume_root_folder }}/nodebb"
pre_deploy_tasks: true pre_deploy_tasks: true
version: 4.x version: "4.0.3"
mongodb_version: 7-jammy mongodb_version: 7-jammy
allowed_sender_domain: true
### Uptime monitoring ### ### Uptime monitoring ###
uptime_kuma: uptime_kuma:

View file

@ -14,6 +14,7 @@ services:
restart: always restart: always
networks: networks:
- default - default
- postfix
- external_services - external_services
volumes: volumes:
- ./build:/usr/src/app/build:rw - ./build:/usr/src/app/build:rw
@ -29,5 +30,7 @@ services:
- mongodb - mongodb
networks: networks:
postfix:
external: true
external_services: external_services:
external: true external: true