forked from APSL/docker-thumbor
-
Notifications
You must be signed in to change notification settings - Fork 0
/
tutum.yml
34 lines (34 loc) · 895 Bytes
/
tutum.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
27
28
29
30
31
32
33
34
thumbor:
image: apsl/thumbor:latest
volumes:
- "/tmp:/data"
environment:
ALLOW_UNSAFE_URL: True # False if you are in prod
SECURITY_KEY: SECURIZE_ME # Change it
DETECTORS: "['thumbor.detectors.queued_detector.queued_complete_detector',]"
RESULT_STORAGE: thumbor.result_storages.file_storage
REDIS_STORAGE_SERVER_HOST: redis
REDIS_STORAGE_SERVER_PORT: 6379
REDIS_STORAGE_SERVER_DB: 0
REDIS_QUEUE_SERVER_HOST: redis
REDIS_QUEUE_SERVER_PORT: 6379
REDIS_QUEUE_SERVER_DB: 0
MIXED_STORAGE_DETECTOR_STORAGE: thumbor.storages.redis_storage
nginx:
image: apsl/thumbor-nginx:latest
links:
- "thumbor:thumbor"
volumes_from:
- "thumbor"
ports:
- "80:80"
redis:
image: redis:latest
remotecv:
image: apsl/remotecv:latest
links:
- "redis:redis"
environment:
REDIS_HOST: redis
REDIS_PORT: 6379
REDIS_DATABASE: 0