Include full contents of all nested repositories
Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
32
letsbe-ansible-runner/stacks/minio/docker-compose.yml
Normal file
32
letsbe-ansible-runner/stacks/minio/docker-compose.yml
Normal file
@@ -0,0 +1,32 @@
|
||||
version: '3'
|
||||
|
||||
services:
|
||||
minio:
|
||||
image: minio/minio:latest
|
||||
container_name: {{ customer }}-minio
|
||||
restart: always
|
||||
labels:
|
||||
- "diun.enable=true"
|
||||
volumes:
|
||||
- {{ customer }}-minio-data:/data
|
||||
environment:
|
||||
- MINIO_ROOT_USER={{ minio_root_user }}
|
||||
- MINIO_ROOT_PASSWORD={{ minio_root_password }}
|
||||
command: server /data --console-address ":9001"
|
||||
ports:
|
||||
- "0.0.0.0:3058:9000"
|
||||
- "0.0.0.0:3059:9001"
|
||||
networks:
|
||||
{{ customer }}-minio:
|
||||
ipv4_address: 172.20.26.2
|
||||
|
||||
networks:
|
||||
{{ customer }}-minio:
|
||||
ipam:
|
||||
driver: default
|
||||
config:
|
||||
- subnet: 172.20.26.0/28
|
||||
gateway: 172.20.26.1
|
||||
|
||||
volumes:
|
||||
{{ customer }}-minio-data:
|
||||
Reference in New Issue
Block a user