Ajouter docker-compose.yml
This commit is contained in:
commit
9daff81c37
24
docker-compose.yml
Normal file
24
docker-compose.yml
Normal file
@ -0,0 +1,24 @@
|
||||
version: '3'
|
||||
|
||||
services:
|
||||
minio:
|
||||
image: docker.io/bitnami/minio:2022
|
||||
ports:
|
||||
- '9000:9000'
|
||||
- '9001:9001'
|
||||
networks:
|
||||
- minionetwork
|
||||
volumes:
|
||||
- 'minio_data:/data'
|
||||
environment:
|
||||
- MINIO_ROOT_USER=your_username
|
||||
- MINIO_ROOT_PASSWORD=your_pasword
|
||||
- MINIO_DEFAULT_BUCKETS=your_bucket_name
|
||||
|
||||
networks:
|
||||
minionetwork:
|
||||
driver: bridge
|
||||
|
||||
volumes:
|
||||
minio_data:
|
||||
driver: local
|
Loading…
Reference in New Issue
Block a user