-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
40 lines (35 loc) · 860 Bytes
/
docker-compose.yml
File metadata and controls
40 lines (35 loc) · 860 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
39
services:
seshat:
build: .
command: npm run dev
environment:
S3_ENDPOINT: https://minio
# we are using self signed certs in development/test
NODE_TLS_REJECT_UNAUTHORIZED: "0"
ports:
- 3000:3000
volumes:
- ./src:/home/app/src
- ./examples:/home/app/examples
- ./tmp:/home/app/tmp
minio:
image: minio/minio
ports:
- 9000:9000
- 9001:9001
environment:
MINIO_ACCESS_KEY: access-key
MINIO_SECRET_KEY: secret-key
command: minio server --console-address 0.0.0.0:9001 --address ":443" /data
volumes:
- ./volumes/s3:/data
- ./minio/certs:/root/.minio/certs
gcs:
image: fsouza/fake-gcs-server
command: ["-scheme", "http"]
ports:
- 4443:4443
volumes:
- ./volumes/gcs:/data
clamav:
image: clamav/clamav:1.5.1