-
Notifications
You must be signed in to change notification settings - Fork 44
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
e1f5da6
commit 78eaf99
Showing
5 changed files
with
89 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,80 @@ | ||
{ | ||
"cosmos-installer": null, | ||
"services": { | ||
"{ServiceName}-mariadb": { | ||
"image": "docker.io/bitnami/mariadb:10.11", | ||
"container_name": "{ServiceName}-mariadb", | ||
"networks": { | ||
"{ServiceName}-net": {} | ||
}, | ||
"hostname": "{ServiceName}-mariadb", | ||
"environment": [ | ||
"MARIADB_PASSWORD={Passwords.0}", | ||
"MARIADB_ROOT_PASSWORD={Passwords.0}", | ||
"MARIADB_USER=bn_phpbb", | ||
"MARIADB_DATABASE={ServiceName}-phpbb" | ||
], | ||
"volumes": [ | ||
{ | ||
"source": "{ServiceName}-mariadb_data", | ||
"target": "/bitnami/mariadb", | ||
"type": "volume" | ||
} | ||
], | ||
"labels": { | ||
"cosmos-force-network-secured": "true", | ||
"cosmos-auto-update": "true", | ||
"cosmos-persistent-env": "MARIADB_PASSWORD, MARIADB_USER, MARIADB_DATABASE, MARIADB_ROOT_PASSWORD" | ||
} | ||
}, | ||
"{ServiceName}": { | ||
"image": "docker.io/bitnami/phpbb:3", | ||
"container_name": "{ServiceName}", | ||
"networks": { | ||
"{ServiceName}-net": {} | ||
}, | ||
"environment": [ | ||
"PHPBB_DATABASE_HOST={ServiceName}-mariadb", | ||
"PHPBB_DATABASE_PORT_NUMBER=3306", | ||
"PHPBB_DATABASE_USER=bn_phpbb", | ||
"PHPBB_DATABASE_NAME={ServiceName}-phpbb", | ||
"PHPBB_DATABASE_PASSWORD={Passwords.0}" | ||
], | ||
"volumes": [ | ||
{ | ||
"source": "{ServiceName}-data", | ||
"target": "/bitnami/phpbb", | ||
"type": "volume" | ||
} | ||
], | ||
"labels": { | ||
"cosmos-force-network-secured": "true", | ||
"cosmos-auto-update": "true", | ||
"cosmos-icon": "https://azukaar.github.io/cosmos-servapps-official/servapps/phpbb/icon.png", | ||
"cosmos-persistent-env": "PHPBB_DATABASE_HOST, PHPBB_DATABASE_PORT_NUMBER, PHPBB_DATABASE_USER, PHPBB_DATABASE_NAME, PHPBB_DATABASE_PASSWORD" | ||
}, | ||
"routes": [ | ||
{ | ||
"name": "{ServiceName}", | ||
"description": "Expose {ServiceName} to the web", | ||
"useHost": true, | ||
"target": "https://{ServiceName}:8443", | ||
"mode": "SERVAPP", | ||
"Timeout": 14400000, | ||
"ThrottlePerMinute": 12000, | ||
"AcceptInsecureHTTPSTarget": true, | ||
"BlockCommonBots": true, | ||
"SmartShield": { | ||
"Enabled": true | ||
} | ||
} | ||
], | ||
"depends_on": [ | ||
"{ServiceName}-mariadb" | ||
] | ||
} | ||
}, | ||
"networks": { | ||
"{ServiceName}-net": {} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
{ | ||
"name": "phpBB", | ||
"longDescription": "phpBB is a free and open-source forum software written in PHP. It provides a platform for creating online communities and discussion forums with features such as user registration, private messaging, moderation tools, and customizable themes. Known for its flexibility, phpBB allows users to customize the appearance and functionality of their forums. It has an active user community and supports extensions for additional features.", | ||
"description": "phpBB is a popular open-source forum software written in PHP, offering a customizable platform for online communities.", | ||
"tags": ["forum software", "open-source", "PHP", "community", "moderation"], | ||
"repository": "https://github.com/phpbb/phpbb", | ||
"image": "https://hub.docker.com/r/bitnami/phpbb/", | ||
"supported_architectures": ["amd64", "arm64"] | ||
} |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.