41 lines
844 B
YAML
41 lines
844 B
YAML
services:
|
|
toxiproxy:
|
|
image: ghcr.io/shopify/toxiproxy:2.9.0
|
|
ports:
|
|
- "8474:8474"
|
|
- "20000-20010:20000-20010"
|
|
healthcheck:
|
|
test: ["CMD", "/toxiproxy-cli", "list"]
|
|
interval: 5s
|
|
timeout: 3s
|
|
retries: 3
|
|
|
|
minio:
|
|
image: minio/minio:latest
|
|
command: server /data --console-address ":9001"
|
|
ports:
|
|
- "9000:9000"
|
|
- "9001:9001"
|
|
environment:
|
|
MINIO_ROOT_USER: test
|
|
MINIO_ROOT_PASSWORD: testtest123
|
|
healthcheck:
|
|
test: ["CMD", "curl", "-f", "http://localhost:9000/minio/health/live"]
|
|
interval: 5s
|
|
timeout: 3s
|
|
retries: 3
|
|
volumes:
|
|
- minio-data:/data
|
|
|
|
sftp:
|
|
image: atmoz/sftp:latest
|
|
ports:
|
|
- "2222:22"
|
|
command: test:test:::music
|
|
volumes:
|
|
- sftp-data:/home/test/music
|
|
|
|
volumes:
|
|
minio-data:
|
|
sftp-data:
|