feat(cdash): Environement fixes
[csit.git] / csit.infra.dash / docker-compose.yaml
index e2259b8..4ec4f21 100644 (file)
@@ -1,35 +1,52 @@
 version: "3.7"
 services:
-  dash:
+  cdash:
     build: "."
     command: "uwsgi --ini app.ini --workers 1"
     depends_on:
       - "minio"
+      - "mc"
     environment:
-      AWS_ACCESS_KEY_ID: ""
-      AWS_SECRET_ACCESS_KEY: ""
-    ports:
-      - "5000"
+      FLASK_DEBUG: 1
+      FLASK_ENV: "development"
     mem_limit: "4g"
+    ports:
+      - "5000:5000"
+    user: "${UID}:${GID}"
     volumes:
       - "${PWD}/app/:/app"
       - "${PWD}/../resources/libraries/python/jumpavg/:/app/cdash/jumpavg"
       - "${HOME}/.aws:/.aws"
   minio:
-    image: "quay.io/minio/minio:RELEASE.2022-11-08T05-27-07Z"
+    image: "quay.io/minio/minio:latest"
     command: server --console-address ":9001" /data
-    expose:
-      - "9000"
-      - "9001"
     environment:
       MINIO_ROOT_USER: "minioadmin"
       MINIO_ROOT_PASSWORD: "minioadmin"
+    expose:
+      - "9000"
     healthcheck:
-      test: ["CMD", "curl", "-f", "http://localhost:9000/minio/health/live"]
+      test: [ "CMD", "curl", "-f", "http://localhost:9000/minio/health/live" ]
       interval: "30s"
       timeout: "20s"
       retries: 3
+    ports:
+      - "9001:9001"
     volumes:
       - "data:/data"
+  mc:
+    image: "quay.io/minio/mc:latest"
+    depends_on:
+      - "minio"
+    entrypoint: >
+      /bin/sh -c "
+      /usr/bin/mc config host rm local;
+      /usr/bin/mc config host add --quiet --api s3v4 local http://minio:9000 minioadmin minioadmin;
+      /usr/bin/mc mb --quiet --ignore-existing local/fdio-docs-s3-cloudfront-index/;
+      /usr/bin/mc anonymous set public local/fdio-docs-s3-cloudfront-index;
+      "
+    # mc alias set aws https://s3.amazon.com/endpoint ACCESS_KEY SECRET KEY
+    # mc admin info aws
 volumes:
-  data:
\ No newline at end of file
+  data:
+#    external: true