-
Notifications
You must be signed in to change notification settings - Fork 20
/
Copy pathdocker-compose.yml
58 lines (52 loc) · 1.22 KB
/
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
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
version: '3.5'
services:
postgres:
image: postgres:12.3
ports:
- '127.0.0.1:5432:5432'
environment:
- POSTGRES_USER=lego
- POSTGRES_HOST_AUTH_METHOD=trust
lego_cypress_helper:
image: abakus/lego-cypress-helper:latest
ports:
- "127.0.0.1:3030:3030"
environment:
PG_HOST: 'postgres'
PG_USERNAME: 'lego'
PG_DATABASE: 'lego'
links:
- postgres
minio:
image: minio/minio
ports:
- '127.0.0.1:9000:9000'
environment:
- MINIO_ACCESS_KEY=lego-dev
- MINIO_SECRET_KEY=lego-dev
command: server /export
redis:
image: redis:latest
ports:
- '127.0.0.1:6379:6379'
thumbor:
image: minimalcompact/thumbor:6.7.5
ports:
- "127.0.0.1:10000:80"
environment:
SECURITY_KEY: 'lego-dev'
MAX_WIDTH: 1000
MAX_HEIGHT: 800
MAX_PIXELS: 110000000.0 # 110 million
QUALITY: 98
AUTO_WEBP: 'True'
ALLOW_UNSAFE_URL: 1
ALLOW_OLD_URLS: 0
AWS_ACCESS_KEY_ID: 'lego-dev'
AWS_SECRET_ACCESS_KEY: 'lego-dev'
TC_AWS_LOADER_BUCKET: lego
TC_AWS_REGION: us-east-1
TC_AWS_ENDPOINT: "http://minio:9000"
LOADER: tc_aws.loaders.s3_loader
links:
- minio