-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathdocker-compose.yml
33 lines (33 loc) · 1016 Bytes
/
docker-compose.yml
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
version: '3'
services:
minio:
image: minio/minio:RELEASE.2023-01-20T02-05-44Z
ports:
- "9000:9000"
- "34247:34247"
environment:
MINIO_ROOT_USER: test
MINIO_ROOT_PASSWORD: testtest123
command: server /data0 --console-address ":34247"
adminio-ui:
image: rzrbld/adminio-ui:latest
environment:
API_BASE_URL: "http://localhost:8080"
ADMINIO_MULTI_BACKEND: "false"
ADMINIO_BACKENDS: '[{"name":"myminio","url":"http://localhost:8080"},{"name":"localhost","url":"http://localhost:8081"},{"name":"error","url":"http://localhost:8082"}]'
NGX_ROOT_PATH: "/"
ports:
- "80:80"
adminio-api:
image: rzrbld/adminio-api:latest
environment:
MINIO_ACCESS: test
MINIO_SECRET: testtest123
MINIO_HOST_PORT: minio:9000
MINIO_SSE_MASTER_KEY: 1:da2f4cfa32bed76507dcd44b42872328a8e14f25cd2a1ec0fb85d299a192a447
ADMINIO_HOST_PORT: :8080
depends_on:
- minio
- adminio-ui
ports:
- "8080:8080"