-
Notifications
You must be signed in to change notification settings - Fork 8
/
docker-compose.yml
26 lines (23 loc) · 1013 Bytes
/
docker-compose.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
version: '2'
services:
imaging:
image: mkoppanen/resty-imaging
build:
context: .
ports:
- "8080:8080"
- "8081:8081"
volumes:
- "./lib/resty/imaging.lua:/usr/local/openresty/site/lualib/resty/imaging.lua"
- "./lib/resty/imaging_http.lua:/usr/local/openresty/site/lualib/resty/imaging_http.lua"
- "./lib/resty/imaging_params.lua:/usr/local/openresty/site/lualib/resty/imaging_params.lua"
- "./lib/resty/imaging_stats.lua:/usr/local/openresty/site/lualib/resty/imaging_stats.lua"
- "./lib/resty/imaging_util.lua:/usr/local/openresty/site/lualib/resty/imaging_util.lua"
- "./lib/resty/imaging_vips.lua:/usr/local/openresty/site/lualib/resty/imaging_vips.lua"
- "./test/test.ops:/tmp/test.ops:ro"
- "./nginx-static.conf:/var/run/openresty-imaging/nginx.conf:ro"
- "./images:/images"
environment:
IMAGING_ALLOWED_ORIGINS: 127.0.0.1
IMAGING_DEFAULT_FORMAT: png
IMAGING_NAMED_OPERATIONS_FILE: /tmp/test.ops