Skip to content

Instantly share code, notes, and snippets.

View PangeranWeb's full-sized avatar

Akhyar Maulana PangeranWeb

View GitHub Profile
@PangeranWeb
PangeranWeb / Dockerfile
Last active May 21, 2018 08:41
Dockerfile
# Mengambil image dari sumber di dockerhub dengan nama
# "php:5.6-apache"
FROM php:5.6-apache
# Port yang akan dibuka adalah port 80
EXPOSE 80
# Menginstall aplikasi yang diperlukan seperti git, git, dan vim
# Aplikasi ini akan dibutuhkan ketika melakukan composer install
RUN apt-get update
RUN apt-get install -y git zip unzip vim libpng12-dev libjpeg-dev libpq-dev libmcrypt-dev \
@PangeranWeb
PangeranWeb / setup_selenium.sh
Created December 2, 2016 06:47 — forked from curtismcmullan/setup_selenium.sh
Setup Selenium Server on Ubuntu 14.04
#!/bin/bash
# Following the guide found at this page
# http://programmingarehard.com/2014/03/17/behat-and-selenium-in-vagrant.html
echo "\r\nUpdating system ...\r\n"
sudo apt-get update
# Create folder to place selenium in