-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
41 lines (37 loc) · 901 Bytes
/
docker-compose.yml
File metadata and controls
41 lines (37 loc) · 901 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
40
41
version: '3'
services:
minio:
image: minio/minio:RELEASE.2019-08-07T01-59-21Z
ports:
- 9000:9000
environment:
MINIO_ACCESS_KEY: test
MINIO_SECRET_KEY: testtest
command: server /data
createbuckets:
image: minio/mc
depends_on:
- minio
entrypoint: >
/bin/sh -c "
/usr/bin/mc config host add myminio http://minio:9000 test testtest;
/usr/bin/mc rm -r --force myminio/somebucketname;
/usr/bin/mc mb myminio/somebucketname;
/usr/bin/mc policy download myminio/somebucketname;
exit 0;
"
ftp:
image: afharo/pure-ftp
ports:
- '21:21'
- '30000-30009:30000-30009'
volumes:
- './.tmp/ftp:/home/ftpusers/test'
environment:
- 'PUBLICHOST=192.168.99.100'
filestore:
image: rumkin/file-store
ports:
- 4444:8080
volumes:
- './.tmp/filestore:/data'