Skip to content

Instantly share code, notes, and snippets.

View aalbadeb's full-sized avatar

Agustin Alba Chicar aalbadeb

View GitHub Profile
@aalbadeb
aalbadeb / run_docker_users.sh
Created December 14, 2015 15:11
This is the run.sh file for Dockerfile-User
#!/bin/bash
set -m
set -e
echo "=> Starting SSH ..."
#service ssh start
sudo /usr/sbin/sshd -D &
fg
@aalbadeb
aalbadeb / Dockerfile-User
Last active December 14, 2015 15:13
Test user dockerfile
#----------------------------------------------------------------------------------------------------------
# @file Dockerfile
# @author Agustin Alba Chicar
# @brief It configures a container with apache, phpmyadmin, mysql, java8, play and the app.
#----------------------------------------------------------------------------------------------------------
#----------------------------------------------------------------------------------------------------------
## Base Container
FROM ubuntu:12.04.5
#----------------------------------------------------------------------------------------------------------