-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdocker-compose.prod.yml
More file actions
38 lines (37 loc) · 964 Bytes
/
docker-compose.prod.yml
File metadata and controls
38 lines (37 loc) · 964 Bytes
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
include:
- docker-compose.yml
services:
cachegate:
build: .
container_name: cachegate
environment:
CACHEGATE_CONFIG: |
listen: "0.0.0.0:8080"
auth:
# Replace these keys ;)
public_key: "PfIG9MO7yrSFq4DNs7GPFC4CticILjGtqpoh43p3ipE"
private_key: "NC7y4q2_rmnWBhlnEo34B9FddA0DkGlu7XGOs76bZn8"
bearer_token: "hicg="
cache:
max_memory: 500MiB
max_disk: 1GiB
max_object_size: 50MiB
sentry:
dsn: null
environment: null
release: null
traces_sample_rate: 0.1
debug: false
stores:
media-s3:
type: s3
bucket: "my-bucket"
region: "us-east-1"
access_key: "minioadmin"
secret_key: "minioadmin"
endpoint: "http://minio:9305"
allow_http: true
ports:
- "8080:8080"
depends_on:
- minio