We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 48aa14e commit cbc33faCopy full SHA for cbc33fa
docker-compose.yaml
@@ -12,15 +12,27 @@ services:
12
depends_on:
13
- minio
14
- create-buckets
15
+ entrypoint: >
16
+ /bin/sh -c "
17
+ sleep 2;
18
+ api;
19
+ "
20
archiver:
21
build:
22
context: .
23
dockerfile: archiver.Dockerfile
24
env_file:
25
- .env
26
+ ports:
27
+ - "8001:8000"
28
29
30
31
32
33
34
+ archiver;
35
36
minio:
37
restart: unless-stopped
38
image: minio/minio:latest
@@ -37,6 +49,7 @@ services:
49
50
entrypoint: >
39
51
/bin/sh -c "
52
+ sleep 1;
40
53
/usr/bin/mc alias set minio http://minio:9000 admin password;
41
54
/usr/bin/mc mb minio/blobs;
42
55
/usr/bin/mc anonymous set public minio/blobs;
0 commit comments