11 lines
251 B
Bash
11 lines
251 B
Bash
|
#!/usr/bin/env bash
|
||
|
podman run --name davdiscover-test \
|
||
|
--rm \
|
||
|
-p "8010:80" \
|
||
|
-v ./src:/var/www/html/ \
|
||
|
-v ./config:/var/www/html/config \
|
||
|
-v ./test-entry.sh:/test-entry.sh \
|
||
|
--entrypoint "/bin/bash" \
|
||
|
php:7.4-apache \
|
||
|
/test-entry.sh
|