mirror of
https://gitlab.com/mojo42/Jirafeau.git
synced 2025-01-18 05:18:38 +01:00
39a36cda14
Note: ._* files are created due to docker file system sync, ignore them Signed-off-by: Jerome Jutteau <j.jutteau@gmail.com>
6 lines
213 B
Bash
Executable File
6 lines
213 B
Bash
Executable File
#!/bin/bash
|
|
jroot=$(cd "$(dirname $0)" && pwd)
|
|
docker -h &> /dev/null || (echo "You need docker installed" && exit 1)
|
|
docker pull tutum/apache-php
|
|
docker run -v $jroot:/app -t -i --rm -p 8080:80 tutum/apache-php
|