-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathdocker-compose.yaml
More file actions
38 lines (37 loc) · 874 Bytes
/
Copy pathdocker-compose.yaml
File metadata and controls
38 lines (37 loc) · 874 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
version: "3"
services:
minio:
image: minio/minio:RELEASE.2019-08-14T20-37-41Z
networks:
- tusd
ports:
- "9000:9000"
volumes:
- "./data/:/data/"
environment:
MINIO_ACCESS_KEY: AKIAIOSFODNN7EXAMPLE
MINIO_SECRET_KEY: wJalrXUtnFEMI/K7MDENG/bPxRfiCYEXAMPLEKEY
command: server /data
tusd:
image: tusproject/tusd:0.13.3
networks:
- tusd
ports:
- "1080:1080"
environment:
AWS_ACCESS_KEY_ID: AKIAIOSFODNN7EXAMPLE
AWS_SECRET_ACCESS_KEY: wJalrXUtnFEMI/K7MDENG/bPxRfiCYEXAMPLEKEY
AWS_REGION: eu-west-1
command: -s3-bucket mybucket -s3-endpoint http://minio:9000
depends_on:
- minio
frontend:
image: nginx:1.17.3-alpine
ports:
- "9506:80"
volumes:
- "./public/:/usr/share/nginx/html:ro"
depends_on:
- tusd
networks:
tusd: