Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

minioでアイコンを変更できるようにする #224

Open
wants to merge 13 commits into
base: develop
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 4 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -113,4 +113,7 @@ typings/
/api/.env.local
/seeds.env

/api/config/credentials.yml.enc
/api/config/credentials.yml.enc

# minio files
/minio/data
16 changes: 16 additions & 0 deletions docker-compose.prod.yml
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,22 @@ services:
depends_on:
- seeds_api

seeds_minio:
image: quay.io/minio/minio:latest
container_name: seeds_minio
environment:
MINIO_ROOT_USER: nutmeg
MINIO_ROOT_PASSWORD: gidaifes
entrypoint: sh
command: -c "/opt/bin/minio server /export --address :9000 --console-address :9001"
volumes:
- ./minio/data:/export
ports:
- 9000:9000
- 9001:9001
extra_hosts:
- host.docker.internal:host-gateway

volumes:
mysql-data:
driver: local
Expand Down
16 changes: 16 additions & 0 deletions docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -49,6 +49,22 @@ services:
depends_on:
- seeds_api

seeds_minio:
image: quay.io/minio/minio:latest
container_name: seeds_minio
environment:
MINIO_ROOT_USER: nutmeg
MINIO_ROOT_PASSWORD: gidaifes
entrypoint: sh
command: -c "/usr/bin/minio server /export --address :9000 --console-address :9001"
volumes:
- ./minio/data:/export
ports:
- 9000:9000
- 9001:9001
extra_hosts:
- host.docker.internal:host-gateway

volumes:
mysql-data:
driver: local
Loading