Skip to content

Commit

Permalink
Add files via upload (#89)
Browse files Browse the repository at this point in the history
  • Loading branch information
lilkidsuave authored Nov 14, 2023
1 parent e1f5da6 commit 78eaf99
Show file tree
Hide file tree
Showing 5 changed files with 89 additions and 0 deletions.
80 changes: 80 additions & 0 deletions servapps/phpbb/cosmos-compose.json
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": {}
}
}
9 changes: 9 additions & 0 deletions servapps/phpbb/description.json
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"]
}
Binary file added servapps/phpbb/icon.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added servapps/phpbb/screenshots/1.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added servapps/phpbb/screenshots/2.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.

0 comments on commit 78eaf99

Please sign in to comment.