mirror of
https://github.com/garethflowers/docker-mediawiki-ldap.git
synced 2025-12-13 23:56:45 +00:00
9 lines
147 B
Bash
9 lines
147 B
Bash
|
|
#!/bin/sh
|
||
|
|
set -ex
|
||
|
|
export IMAGE_NAME=garethflowers/mediawiki-ldap
|
||
|
|
|
||
|
|
docker build --tag $IMAGE_NAME .
|
||
|
|
docker run --rm $IMAGE_NAME php -v
|
||
|
|
|
||
|
|
echo "\nOK"
|