Skip to content

Instantly share code, notes, and snippets.

const charsers = [
{ name: 'Nodejs', ranking: 7},
{ name: 'Reactjs', ranking: 7.5},
{ name: 'Vuejs', ranking: 6},
{ name: 'MongoDB', ranking: 7},
{ name: 'GraphQL', ranking: 7}
];
function order(list, orderType) {
@goodguy000
goodguy000 / docker_wordpress.md
Created April 29, 2019 03:43 — forked from bradtraversy/docker_wordpress.md
Docker Compose FIle For Wordpress, MySQL & phpmyadmin

Wordpress & Docker

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