mirror of
https://github.com/imgproxy/imgproxy.git
synced 2025-01-08 10:45:04 +02:00
65 lines
1.5 KiB
Markdown
65 lines
1.5 KiB
Markdown
|
# Installation
|
||
|
|
||
|
There are three ways you can install imgproxy:
|
||
|
|
||
|
### Docker
|
||
|
|
||
|
imgproxy can (and should) be used as a standalone application inside a Docker container. Just pull the official image from Docker Hub:
|
||
|
|
||
|
```bash
|
||
|
$ docker pull darthsim/imgproxy:latest
|
||
|
$ docker run -p 8080:8080 -it darthsim/imgproxy
|
||
|
```
|
||
|
|
||
|
You can also build you own image. imgproxy is ready to be dockerized, plug and play:
|
||
|
|
||
|
```bash
|
||
|
$ docker build -t imgproxy .
|
||
|
$ docker run -p 8080:8080 -it imgproxy
|
||
|
```
|
||
|
|
||
|
### Heroku
|
||
|
|
||
|
imgproxy can be deployed to Heroku with the click of the button:
|
||
|
|
||
|
[![Deploy](https://www.herokucdn.com/deploy/button.svg)](https://heroku.com/deploy)
|
||
|
|
||
|
However, you can do it manually with a few steps:
|
||
|
|
||
|
```bash
|
||
|
$ git clone https://github.com/DarthSim/imgproxy.git && cd imgproxy
|
||
|
$ heroku create your-application
|
||
|
$ heroku stack:set container
|
||
|
$ git push heroku master
|
||
|
```
|
||
|
|
||
|
### From the source
|
||
|
|
||
|
1. First, install [libvips](https://github.com/libvips/libvips).
|
||
|
|
||
|
```bash
|
||
|
# macOS
|
||
|
$ brew tap homebrew/science
|
||
|
$ brew install vips
|
||
|
|
||
|
# Ubuntu
|
||
|
# Ubuntu apt repository contains a pretty old version of libvips.
|
||
|
# It's recommended to use PPA with an up to date version.
|
||
|
$ sudo add-apt-repository ppa:dhor/myway
|
||
|
$ sudo apt-get install libvips-dev
|
||
|
```
|
||
|
|
||
|
**Note:** Most libvips packages come with WebP support. If you want libvips to support WebP on macOS, you need to install it this way:
|
||
|
|
||
|
```bash
|
||
|
$ brew tap homebrew/science
|
||
|
$ brew install vips --with-webp
|
||
|
```
|
||
|
|
||
|
2. Next, install imgproxy itself:
|
||
|
|
||
|
```bash
|
||
|
$ go get -f -u github.com/DarthSim/imgproxy
|
||
|
```
|
||
|
|