2021-08-11 10:33:06 +02:00
|
|
|
#!/usr/bin/env bash
|
2021-08-11 17:04:34 +02:00
|
|
|
podman run --name mailautoconf-test \
|
2021-08-11 10:33:06 +02:00
|
|
|
--rm \
|
|
|
|
-p "8010:80" \
|
|
|
|
-v ./src:/var/www/html/ \
|
|
|
|
-v ./config:/var/www/html/config \
|
|
|
|
-v ./test-entry.sh:/test-entry.sh \
|
2021-08-12 17:28:37 +02:00
|
|
|
-v ./entrypoint.sh:/entrypoint.sh \
|
2021-08-11 10:33:06 +02:00
|
|
|
--entrypoint "/bin/bash" \
|
|
|
|
php:7.4-apache \
|
|
|
|
/test-entry.sh
|