diff options
| author | Stephen Davis <[email protected]> | 2023-01-28 01:50:54 -0500 |
|---|---|---|
| committer | GitHub <[email protected]> | 2023-01-27 22:50:54 -0800 |
| commit | fe14025ea6b0e8ce053ebe40148eb28e196d7ace (patch) | |
| tree | 73f223816236d568f968ed6aef2bd0f7df91b871 | |
| parent | 766f85e861ec46b48dcbe4d121b9b19d9cd998db (diff) | |
| download | caprover-one-click-apps-fe14025ea6b0e8ce053ebe40148eb28e196d7ace.tar.gz caprover-one-click-apps-fe14025ea6b0e8ce053ebe40148eb28e196d7ace.zip | |
Update to v5.0.4, added plugin/theme volumes (#848)
| -rw-r--r-- | public/v4/apps/redmine-mysql.yml | 32 | ||||
| -rw-r--r-- | public/v4/apps/redmine.yml | 30 |
2 files changed, 39 insertions, 23 deletions
diff --git a/public/v4/apps/redmine-mysql.yml b/public/v4/apps/redmine-mysql.yml index 9ebd0e3..0f9d3ce 100644 --- a/public/v4/apps/redmine-mysql.yml +++ b/public/v4/apps/redmine-mysql.yml @@ -24,6 +24,8 @@ services: restart: always volumes: - $$cap_appname-data:/usr/src/redmine/files + - $$cap_appname-themes:/usr/src/redmine/public/themes + - $$cap_appname-plugins:/usr/src/redmine/plugins caproverExtra: containerHttpPort: '3000' @@ -31,11 +33,11 @@ caproverOneClickApp: variables: - id: $$cap_redmine_version label: Redmine Version - defaultValue: 4.2.3 + defaultValue: '5.0.4' description: 'Check out their Docker page for the valid tags https://hub.docker.com/_/redmine?tab=tags' - id: $$cap_mysql_version label: MySQL Version - defaultValue: 5.7 + defaultValue: '5.7' description: 'Check out their Docker page for the valid tags https://hub.docker.com/_/mysql?tab=tags' - id: $$cap_mysql_password label: MySQL Password @@ -45,26 +47,32 @@ caproverOneClickApp: defaultValue: $$cap_gen_random_hex(64) instructions: - start: >- + start: | Redmine is a flexible project management web application written using Ruby on Rails framework. For more info visit https://www.redmine.org/projects/redmine. - - After installation, login to Redmine using the default credentials [admin:admin]. - end: >- + -------------------------------------------- + Following the installation, login with the default credentials: + + Username: `admin` + Password: `admin` + + end: | ✅ Redmine has been successfully deployed and is now available at http://$$cap_appname.$$cap_root_domain! + 🔐 The default login credentials are: - 🔐 The default login credentials are: + Username: `admin` + Password: `admin` - Username: admin - Password: admin -------------------------------------------- + 📂 Access to the required folder for uploading files, plugins, and themes is provided using Caprover managed persistent directories by default (`/var/lib/docker/volumes/$$cap_appname-data`). - More information on initial configuration can be found at https://www.redmine.org/projects/redmine/wiki/RedmineInstall#Configuration. + -------------------------------------------- + 🔰 More information on initial configuration can be found at https://www.redmine.org/projects/redmine/wiki/RedmineInstall#Configuration. - displayName: Redmine (MySQL) + displayName: Redmine (PostgreSQL) isOfficial: true description: >- Redmine is a flexible project management web application written using Ruby on Rails framework. This app is packaged with MySQL. documentation: >- - This docker-compose is taken from https://hub.docker.com/_/redmine?tab=description + More information on initial configuration can be found at https://www.redmine.org/projects/redmine/wiki/RedmineInstall#Configuration. This template was developed using variables from https://hub.docker.com/_/redmine?tab=description. diff --git a/public/v4/apps/redmine.yml b/public/v4/apps/redmine.yml index 1288a1a..c85f4ce 100644 --- a/public/v4/apps/redmine.yml +++ b/public/v4/apps/redmine.yml @@ -27,6 +27,8 @@ services: restart: always volumes: - $$cap_appname-data:/usr/src/redmine/files + - $$cap_appname-themes:/usr/src/redmine/public/themes + - $$cap_appname-plugins:/usr/src/redmine/plugins caproverExtra: containerHttpPort: '3000' @@ -34,11 +36,11 @@ caproverOneClickApp: variables: - id: $$cap_redmine_version label: Redmine Version - defaultValue: '4.2.3' + defaultValue: '5.0.4' description: 'Check out their Docker page for the valid tags https://hub.docker.com/_/redmine?tab=tags' - id: $$cap_postgres_version label: PostgreSQL Version - defaultValue: '9.6' + defaultValue: '15.1' description: 'Check out their Docker page for the valid tags https://hub.docker.com/_/postgres?tab=tags' - id: $$cap_postgres_user label: PostgreSQL username @@ -51,26 +53,32 @@ caproverOneClickApp: defaultValue: $$cap_gen_random_hex(64) instructions: - start: >- + start: | Redmine is a flexible project management web application written using Ruby on Rails framework. For more info visit https://www.redmine.org/projects/redmine. - - After installation, login to Redmine using the default credentials [admin:admin]. - end: >- + -------------------------------------------- + Following the installation, login with the default credentials: + + Username: `admin` + Password: `admin` + + end: | ✅ Redmine has been successfully deployed and is now available at http://$$cap_appname.$$cap_root_domain! + 🔐 The default login credentials are: - 🔐 The default login credentials are: + Username: `admin` + Password: `admin` - Username: admin - Password: admin -------------------------------------------- + 📂 Access to the required folder for uploading files, plugins, and themes is provided using Caprover managed persistent directories by default (`/var/lib/docker/volumes/$$cap_appname-data`). - More information on initial configuration can be found at https://www.redmine.org/projects/redmine/wiki/RedmineInstall#Configuration. + -------------------------------------------- + 🔰 More information on initial configuration can be found at https://www.redmine.org/projects/redmine/wiki/RedmineInstall#Configuration. displayName: Redmine (PostgreSQL) isOfficial: true description: >- Redmine is a flexible project management web application written using Ruby on Rails framework. This app is packaged with PostgreSQL. documentation: >- - This docker-compose is taken from https://hub.docker.com/_/redmine?tab=description + More information on initial configuration can be found at https://www.redmine.org/projects/redmine/wiki/RedmineInstall#Configuration. This template was developed using variables from https://hub.docker.com/_/redmine?tab=description. |
