Add minio
This commit is contained in:
parent
a0a062ea47
commit
29e9f3381e
@ -11,6 +11,9 @@ PG_ADMIN_PORT=1080
|
||||
PG_PORT=5432
|
||||
RABBIT_PORT=5672
|
||||
RABBIT_ADMIN_PORT=15672
|
||||
MINIO_PORT=1090
|
||||
MINIO_ADMIN_PORT=1091
|
||||
MINIO_REGION_NAME=Ufa
|
||||
MYSQL_PORT=3306
|
||||
MYSQL_LEGACY_PORT=33306
|
||||
XDEBUG_HOST=172.17.0.1
|
||||
|
||||
@ -126,6 +126,22 @@ services:
|
||||
RABBITMQ_DEFAULT_PASS: ${PASSWORD}
|
||||
RABBITMQ_DEFAULT_VHOST: ${APP_NAME}
|
||||
|
||||
minio:
|
||||
image: minio/minio
|
||||
hostname: minio
|
||||
container_name: minio_${APP_NAME}
|
||||
restart: 'no'
|
||||
ports:
|
||||
- ${MINIO_ADMIN_PORT}:9001
|
||||
- ${MINIO_PORT}:9000
|
||||
environment:
|
||||
MINIO_ROOT_USER: ${APP_USER}
|
||||
MINIO_ROOT_PASSWORD: ${PASSWORD}
|
||||
MINIO_REGION_NAME: ${MINIO_REGION_NAME}
|
||||
volumes:
|
||||
- minio:/data
|
||||
command: minio server --console-address ":9001" /data
|
||||
|
||||
volumes:
|
||||
pgsql:
|
||||
name: pgsql_${APP_NAME}
|
||||
@ -139,3 +155,6 @@ volumes:
|
||||
pgadmin:
|
||||
name: pgadmin_${APP_NAME}
|
||||
external: false
|
||||
minio:
|
||||
name: minio_${APP_NAME}
|
||||
external: false
|
||||
|
||||
Loading…
Reference in New Issue
Block a user