The PHP deployment tool with support for popular frameworks out of the box
50K+
This image provides a simple way to run Deployer using Docker.
You can use the following command to initialize Deployer in your current directory:
docker run --rm -it -v .:/app deployphp/deployer init
This will set up deploy.php within the current folder.
To ensure stability and avoid unexpected updates, it is recommended to use a specific version of Deployer in your Docker command. Replace latest with the desired version tag.
Example:
docker run --rm -it -v .:/app deployphp/deployer:v7 init
Check available tags on Docker Hub to find the version that best suits your project needs.
-v .:/app: Mounts the current working directory to the container, so Deployer can access your files.--rm: Automatically removes the container after it exits.-it: Runs the container in interactive mode.For more detailed usage instructions, visit the official Deployer Documentation.
Content type
Image
Digest
sha256:085907aaf…
Size
49.7 MB
Last updated
2 months ago
docker pull deployphp/deployer