Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions templates/mosparo/.env.example
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
# https://github.com/mosparo/mosparo
38 changes: 38 additions & 0 deletions templates/mosparo/compose.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,38 @@
services:
db:
image: mariadb:11.4
command: '--default-authentication-plugin=mysql_native_password'
volumes:
- db_data:/var/lib/mysql
restart: always
environment:
- MYSQL_ROOT_PASSWORD=mosparo_root_pw
- MYSQL_DATABASE=mosparo
- MYSQL_USER=mosparo
- MYSQL_PASSWORD=mosparo_password
expose:
- 3306
- 33060
mosparo_web:
image: mosparo/mosparo:latest
ports:
- 8086:80
restart: always
environment:
- MOSPARO_ENABLE_WEBSERVER=1
# If you want to run the cron jobs in a seperated container, uncomment the following lines
#- MOSPARO_ENABLE_CRON=0
#- MOSPARO_CLEANUP_GRACE_PERIOD_ENABLED=1
volumes:
- mosparo_data:/mosparo-data
# If you want to run the cron jobs in a seperated container, uncomment the following lines
#mosparo_cron:
# image: mosparo/mosparo:latest
# restart: always
# environment:
# - MOSPARO_ENABLE_WEBSERVER=0
# volumes:
# - mosparo_data:/mosparo-data
volumes:
db_data:
mosparo_data:
7 changes: 7 additions & 0 deletions templates/mosparo/template.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
{
"name": "Mosparo",
"description": "The modern spam protection.",
"version": "1.0.0",
"author": "rjcndev",
"tags": ["Tools"]
}