From c6d377e82eaf59258cc7b0df4fd9ffbeb9a40ef1 Mon Sep 17 00:00:00 2001 From: Bryon Lewis Date: Thu, 4 Jan 2024 11:17:25 -0500 Subject: [PATCH] minio local container location --- .github/workflows/ci.yaml | 2 +- dev/.env.docker-compose | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index 4fbabbf..1d5060b 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -13,7 +13,7 @@ env: DJANGO_MINIO_STORAGE_ACCESS_KEY: minioAccessKey DJANGO_MINIO_STORAGE_SECRET_KEY: minioSecretKey DJANGO_STORAGE_BUCKET_NAME: django-storage - DJANGO_MINIO_STORAGE_MEDIA_URL: http://localhost:9000/django-storage + DJANGO_MINIO_STORAGE_MEDIA_URL: http://minio:9000/django-storage jobs: lint-python: name: Lint Python diff --git a/dev/.env.docker-compose b/dev/.env.docker-compose index a17261f..9daa15e 100644 --- a/dev/.env.docker-compose +++ b/dev/.env.docker-compose @@ -5,5 +5,5 @@ DJANGO_MINIO_STORAGE_ENDPOINT=minio:9000 DJANGO_MINIO_STORAGE_ACCESS_KEY=minioAccessKey DJANGO_MINIO_STORAGE_SECRET_KEY=minioSecretKey DJANGO_STORAGE_BUCKET_NAME=django-storage -DJANGO_MINIO_STORAGE_MEDIA_URL=http://localhost:9000/django-storage +DJANGO_MINIO_STORAGE_MEDIA_URL=http://minio:9000/django-storage DJANGO_CORS_ORIGIN_WHITELIST=http://localhost:3000 \ No newline at end of file