mirror of
https://github.com/php-curl-class/php-curl-class.git
synced 2026-08-17 18:45:08 +00:00
16 lines
379 B
Bash
Executable File
16 lines
379 B
Bash
Executable File
# Run image to create container.
|
|
|
|
SCRIPT_DIR="$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)"
|
|
set -x
|
|
cd "${SCRIPT_DIR}/../../.."
|
|
project_dir="${PWD}"
|
|
|
|
docker start "php54" ||
|
|
docker run \
|
|
--detach \
|
|
--interactive \
|
|
--mount "type=bind,src=${project_dir},dst=/data,readonly=true" \
|
|
--name="php54" \
|
|
--tty \
|
|
"php-curl-class/php54"
|