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
| function postUpdatedxkcdIfNecessary() { | |
| var properties = PropertiesService.getUserProperties(); | |
| var latestComic = JSON.parse(UrlFetchApp.fetch("http://xkcd.com/info.0.json").getContentText()); | |
| if (latestComic["num"] > properties.getProperty("lastComic")) { | |
| var title = latestComic["title"]; | |
| var imageURL = latestComic["img"]; | |
| var altText = latestComic["alt"]; | |
| var number = latestComic["num"]; |