Made two minor corrections to the existing Percona Server app. (#644)

* Opted for cleaner '$$cap_appname' w/o '-percona'

* Corrected link for available tags
This commit is contained in:
Stephen Davis 2022-04-13 09:23:30 -04:00 committed by GitHub
parent 0448ee8a08
commit ddd2fbd3ea
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 4 additions and 4 deletions

View File

@ -1,9 +1,9 @@
captainVersion: 4 captainVersion: 4
services: services:
$$cap_appname-percona: $$cap_appname:
image: percona:$$cap_percona_version image: percona:$$cap_percona_version
volumes: volumes:
- $$cap_appname-percona-data:/var/lib/mysql - $$cap_appname-data:/var/lib/mysql
restart: always restart: always
environment: environment:
MYSQL_ROOT_PASSWORD: $$cap_db_pass MYSQL_ROOT_PASSWORD: $$cap_db_pass
@ -17,7 +17,7 @@ caproverOneClickApp:
- id: $$cap_percona_version - id: $$cap_percona_version
label: Percona Version label: Percona Version
defaultValue: 'ps-8.0' defaultValue: 'ps-8.0'
description: Check out their Docker page for the valid tags https://hub.docker.com/_/mariadb?tab=tags description: Check out their Docker page for the valid tags https://hub.docker.com/_/percona
validRegex: /^([^\s^\/])+$/ validRegex: /^([^\s^\/])+$/
- id: $$cap_db_pass - id: $$cap_db_pass
label: Percona Root password label: Percona Root password
@ -34,7 +34,7 @@ caproverOneClickApp:
defaultValue: utf8mb4_unicode_ci defaultValue: utf8mb4_unicode_ci
instructions: instructions:
start: "Percona Server for MySQL is a fork of the MySQL relational database management system created by Percona. It aims to retain close compatibility to the official MySQL releases, while focusing on performance and increased visibility into server operations. Also included in Percona Server is XtraDB, Percona's fork of the InnoDB Storage Engine." start: "Percona Server for MySQL is a fork of the MySQL relational database management system created by Percona. It aims to retain close compatibility to the official MySQL releases, while focusing on performance and increased visibility into server operations. Also included in Percona Server is XtraDB, Percona's fork of the InnoDB Storage Engine."
end: "Percona is deployed and available as srv-captain--$$cap_appname-percona:3306 to other apps. For example with NodeJS, you do 'var con = mysql.createConnection({ host: 'srv-captain--$$cap_appname-percona', user: 'root', password: '*********' });'" end: "Percona is deployed and available as srv-captain--$$cap_appname:3306 to other apps. For example with NodeJS, you do 'var con = mysql.createConnection({ host: 'srv-captain--$$cap_appname', user: 'root', password: '*********' });'"
displayName: Percona Server displayName: Percona Server
isOfficial: true isOfficial: true
description: Percona Server for MySQL is a fork of the MySQL relational database management system created by Percona. description: Percona Server for MySQL is a fork of the MySQL relational database management system created by Percona.