sudo apt install imagemagick
sudo apt install php-imagick
First, install pkg-config and imagemagick itself
brew install pkg-config imagemagickNext up, use pecl to get the PHP extension compiled.
pecl install imagick| # ---------------------- | |
| # Git Aliases | |
| # ---------------------- | |
| alias ga='git add' | |
| alias gaa='git add .' | |
| alias gaaa='git add --all' | |
| alias gb='git branch' | |
| alias gc='git commit' | |
| alias gcm='git commit --message' | |
| alias gco='git checkout' |
| #!/bin/bash | |
| git add -A; git commit -m "$(date +"Update: %d/%m/%Y %H:%M:%S")"; git push |
| FROM php:7.4-fpm-alpine | |
| RUN apk add --no-cache --virtual .deps \ | |
| git \ | |
| icu-libs \ | |
| zlib \ | |
| openssh \ | |
| imagemagick \ | |
| imagemagick-libs \ | |
| imagemagick-dev \ |