diff --git a/.DS_Store b/.DS_Store index 48de152b..5f75c679 100644 Binary files a/.DS_Store and b/.DS_Store differ diff --git a/docker-compose.yml b/docker-compose.yml index caa26dfe..7cc45238 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -130,6 +130,7 @@ services: - mih-api-hub #============== API Hub ==================================================================== mih-api-hub: + platform: linux/amd64 build: context: ./mih_api_hub target: builder @@ -172,22 +173,6 @@ services: - mih-network depends_on: - mih-db - #============== PHP My Admin ==================================================================== - # phpmyadmin: - # platform: linux/amd64 - # image: phpmyadmin/phpmyadmin - # container_name: MIH-phpmyadmin - # environment: - # PMA_HOST: mih-db - # PMA_PORT: 3306 - # PMA_ARBITRARY: - # networks: - # - mih-network - # restart: always - # ports: - # - 8081:80 - # depends_on: - # - mih-db #============== Minio File Storage ==================================================================== mih-minio: platform: linux/amd64 @@ -208,7 +193,7 @@ services: #============== MIH-Monitor Portainer ==================================================================== mih-monitor: container_name: mih-monitor - image: portainer/portainer-ce:2.20.3 + image: portainer/portainer-ce:lts ports: - "127.0.0.1:9444:9443" volumes: @@ -220,7 +205,7 @@ services: #============== MIH-AI Ollama ==================================================================== mih-ai: container_name: mih-ai - image: ollama/ollama:0.21.2 + image: ollama/ollama:latest ports: - "127.0.0.1:11434:11434" volumes: diff --git a/mih_api_hub/Dockerfile b/mih_api_hub/Dockerfile index dfd1da3d..7bb69304 100644 --- a/mih_api_hub/Dockerfile +++ b/mih_api_hub/Dockerfile @@ -5,7 +5,7 @@ WORKDIR /app COPY requirements.txt ./ RUN --mount=type=cache,target=/root/.cache/pip \ - pip --default-timeout=120 install -r requirements.txt + pip --default-timeout=120 install -r requirements.txt # COPY . ./app @@ -30,4 +30,4 @@ RUN --mount=type=cache,target=/root/.cache/pip \ # COPY ./requirements.txt ./ -# RUN pip3 install --no-cache-dir -r requirements.txt \ No newline at end of file +# RUN pip3 install --no-cache-dir -r requirements.txt diff --git a/mih_ui/lib/mih_providers/about_mih_provider.dart b/mih_ui/lib/mih_providers/about_mih_provider.dart index 7ccada72..e5da12d0 100644 --- a/mih_ui/lib/mih_providers/about_mih_provider.dart +++ b/mih_ui/lib/mih_providers/about_mih_provider.dart @@ -2,7 +2,7 @@ import 'package:flutter/foundation.dart'; class AboutMihProvider extends ChangeNotifier { int toolIndex; - String version = "1.2.7"; + String version = "1.3.0"; AboutMihProvider({ this.toolIndex = 0, diff --git a/mih_ui/pubspec.yaml b/mih_ui/pubspec.yaml index 7d4988b0..97bff19e 100644 --- a/mih_ui/pubspec.yaml +++ b/mih_ui/pubspec.yaml @@ -1,7 +1,7 @@ name: mzansi_innovation_hub description: "" publish_to: "none" # Remove this line if you wish to publish to pub.dev -version: 1.2.7+132 +version: 1.3.0+133 environment: sdk: ">=3.5.3 <4.0.0"