mirror of
https://github.com/garethflowers/docker-mediawiki-ldap.git
synced 2025-04-19 08:55:13 +00:00
9 lines
164 B
Bash
Executable File
9 lines
164 B
Bash
Executable File
#!/bin/sh
|
|
set -ex
|
|
export IMAGE_NAME=garethflowers/mediawiki-ldap
|
|
|
|
docker build --progress plain --tag $IMAGE_NAME .
|
|
docker run --rm $IMAGE_NAME php -v
|
|
|
|
echo "\nOK"
|