Skip to content

Instantly share code, notes, and snippets.

@bradtraversy
bradtraversy / docker_wordpress.md
Last active March 9, 2026 13:00
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
@giusepped
giusepped / angular-sinatra_on_heroku.md
Last active January 9, 2018 20:26
Deploying your angular/sinatra app on heroku

DEPLOYING YOUR ANGULAR/SINATRA APP ON HEROKU

  • $ mkdir public create a public folder

  • $ mv bower_components public/bower_components (don't forget to change the gitignore file!!) you need to move your bower components to the public folder and also any stylesheets or anything you will want to require in your http.

  • Create Gemfile

source 'https://rubygems.org'

gem 'sinatra'