Still box-project/box
, but dockerized! 🐳
- Docker
^20.10
docker run -it --rm -v $(pwd):/app backdevs/box:latest compile
This will mount the current working directory to the /app
directory inside the container and run box compile
inside that directory.
For more advanced configuration options, please refer to the official box
configuration documentation.
docker build \
--build-arg BOX_VERSION=4.3.8 \
--build-arg COMPOSER_VERSION=2.5.5 \
--tag backdevs/box:4.3.8 \
--tag backdevs/box:latest \
.