Skip to content

Instantly share code, notes, and snippets.

View andriyudatama's full-sized avatar

Andri Yudatama andriyudatama

View GitHub Profile
@andriyudatama
andriyudatama / docker_wordpress.md
Created November 23, 2020 23:22 — 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
@andriyudatama
andriyudatama / dabblet.css
Created August 2, 2012 15:46 — forked from cahnory/dabblet.css
Clear float, technique définitive
/* Clear float, technique définitive */
li { float: left }
ul { *zoom: 1 }
ul:after {
clear: left;
content: ' '; /* Attention, c'est un espace insécable (alt+space) */
display: block;
height: 0;
}