This file will setup Wordpress, MySQL & PHPMyAdmin with a single command. Add the code below to a file called "docker-compose.yaml" and run the command
$ docker-compose up -d
# To Tear Down
$ docker-compose down --volumes
| // Example | |
| // Calculates a h-index number from an array of random citations per research publication | |
| // The number of research publications (e.g. journal articles) | |
| let publications = 10; | |
| // Maximum number of citations per publication | |
| let maxCitation = 100; | |
| // Generates an array of random citations per research publication |