Skip to content

Instantly share code, notes, and snippets.

View imgeraldalinio's full-sized avatar
😎
Innovator

Gerald Alinio imgeraldalinio

😎
Innovator
View GitHub Profile
@bradtraversy
bradtraversy / docker_wordpress.md
Last active July 25, 2024 16:24
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
@teocci
teocci / php-nginx-install.md
Last active January 24, 2022 09:49
Install PHP7.2 NGINX and PHP7.2-FPM on Ubuntu 18.04

Install NGINX

# Install software-properties-common package to give us add-apt-repository package
sudo apt-get install -y software-properties-common

# Install latest nginx version from community maintained ppa
sudo add-apt-repository ppa:nginx/stable

# Update packages after adding ppa
sudo apt-get update