Simpler docker dev env

Note: ._* files are created due to docker file system sync, ignore them

Signed-off-by: Jerome Jutteau <j.jutteau@gmail.com>
This commit is contained in:
Jerome Jutteau 2017-01-22 13:59:17 +01:00
parent 2f04c1bf32
commit 39a36cda14
2 changed files with 4 additions and 14 deletions

1
.gitignore vendored
View File

@ -1,3 +1,4 @@
lib/config.local.php
lib/tos.local.txt
var-*
*._*

17
dev.sh
View File

@ -1,16 +1,5 @@
#!/bin/bash
set -e
if [ "$(id -u)" -ne "1000" ]; then
echo "your user id is not 1000, shared folder won't have a good uid"
exit 1
fi
jroot=$(cd "$(dirname $0)" && pwd)
docker -h &> /dev/null || (echo "You need docker installed" && exit 1)
docker pull mojo4242/jirafeau-dev:apache2-php7
name=jirafeau-dev-$(date +%Y%m%d%H%M%S)
docker run --name $name -d -p 8000:80 -v $(pwd):/var/www/html mojo4242/jirafeau-dev:apache2-php7 /usr/sbin/apache2ctl -D FOREGROUND
echo "You can now open http://127.0.0.1:8000/"
echo "Press enter to destroy instance..."
read
docker stop -t 0 $name
docker rm $name
echo "Instance destroyed"
docker pull tutum/apache-php
docker run -v $jroot:/app -t -i --rm -p 8080:80 tutum/apache-php