# docker-dexec-php53 **Repository Path**: benson/docker-dexec-php53 ## Basic Information - **Project Name**: docker-dexec-php53 - **Description**: docker-dexec-php53 - **Primary Language**: Shell - **License**: MIT - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2015-05-11 - **Last Updated**: 2020-12-19 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # Docker Exec Image: PHP A Dockerfile describing an container capable of executing PHP source files. # Build ```sh git clone https://github.com/docker-exec/php.git docker build -t dexec/php . ``` # Usage In a directory containing a script e.g. foo.php, run: ```sh docker run -t --rm \ -v $(pwd -P)/foo.php:/tmp/dexec/build/foo.php \ dexec/php foo.php ``` ## Passing arguments to the script Arguments can be passed to the script using any of the following forms: ``` -a argument --arg argument --arg=argument ``` Each argument passed must be prefixed in this way, e.g. ```sh docker run -t --rm \ -v $(pwd -P)/foo.php:/tmp/dexec/build/foo.php \ dexec/php foo.php \ --arg='hello world' \ --arg=foo \ --arg=bar ```