mirror of
https://github.com/Dokploy/templates
synced 2025-06-26 18:16:07 +00:00
feat: Add extensive collection of application blueprints with Docker Compose configurations
This commit is contained in:
13
blueprints/minio/docker-compose.yml
Normal file
13
blueprints/minio/docker-compose.yml
Normal file
@@ -0,0 +1,13 @@
|
||||
version: "3.8"
|
||||
services:
|
||||
minio:
|
||||
image: minio/minio
|
||||
volumes:
|
||||
- minio-data:/data
|
||||
environment:
|
||||
- MINIO_ROOT_USER=minioadmin
|
||||
- MINIO_ROOT_PASSWORD=minioadmin123
|
||||
command: server /data --console-address ":9001"
|
||||
|
||||
volumes:
|
||||
minio-data:
|
||||
BIN
blueprints/minio/minio.png
Normal file
BIN
blueprints/minio/minio.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 11 KiB |
16
blueprints/minio/template.yml
Normal file
16
blueprints/minio/template.yml
Normal file
@@ -0,0 +1,16 @@
|
||||
variables:
|
||||
main_domain: ${randomDomain}
|
||||
api_domain: ${randomDomain}
|
||||
|
||||
config:
|
||||
domains:
|
||||
- serviceName: minio
|
||||
port: 9001
|
||||
host: ${main_domain}
|
||||
- serviceName: minio
|
||||
port: 9000
|
||||
host: ${api_domain}
|
||||
|
||||
env: {}
|
||||
|
||||
mounts: []
|
||||
Reference in New Issue
Block a user