From 585d34bcc5e0c26c4f41de9d4354c0a42804e1cb Mon Sep 17 00:00:00 2001 From: Mynt Labs Date: Thu, 19 Jun 2025 14:05:40 +1000 Subject: [PATCH 1/2] Add data volume for workspace --- CHANGELOG.md | 5 ++++- README.md | 2 +- VERSION | 2 +- src/docker-compose.build.yml | 3 +++ src/docker-compose.release-template.yml | 5 ++++- 5 files changed, 13 insertions(+), 4 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 24a8a89..a4abc8e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,7 +1,10 @@ # Changelog +## [0.1.24] - ... +- Added named volume for `workspace`. + ## [0.1.23] - ... -- First distributed release of FlintML +- First distributed release of FlintML. ... diff --git a/README.md b/README.md index 23fe860..49c0b1d 100644 --- a/README.md +++ b/README.md @@ -56,7 +56,7 @@ FlintML will become available at `localhost:8701`. The first time you execute co ### Data Storage -The `docker-compose.*.yml` in each FlintML release contains the named Docker volumes `storage_data`, `storage_meta` and `experiment_data`. If you wish to specify custom volumes, you should create an override `docker-compose.override.yml` and compose it when spinning up flint. See the [docs](https://docs.docker.com/compose/how-tos/multiple-compose-files/merge/). +The `docker-compose.*.yml` in each FlintML release contains the named Docker volumes `storage_data`, `storage_meta`, `experiment_data` and `workspace_data`. If you wish to specify custom volumes, you should create an override `docker-compose.override.yml` and compose it when spinning up flint. See the [docs](https://docs.docker.com/compose/how-tos/multiple-compose-files/merge/). ### Environment Variables diff --git a/VERSION b/VERSION index 85cdcf9..b9fe11d 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -0.1.23 \ No newline at end of file +0.1.24 \ No newline at end of file diff --git a/src/docker-compose.build.yml b/src/docker-compose.build.yml index 192e22f..0467906 100644 --- a/src/docker-compose.build.yml +++ b/src/docker-compose.build.yml @@ -64,6 +64,8 @@ services: depends_on: - catalog-explorer - experiment-tracker + volumes: + - workspace_data:/srv/workspace restart: always reverse-proxy: @@ -83,3 +85,4 @@ volumes: storage_data: storage_meta: experiment_data: + workspace_data: \ No newline at end of file diff --git a/src/docker-compose.release-template.yml b/src/docker-compose.release-template.yml index 242326e..0a09f4f 100644 --- a/src/docker-compose.release-template.yml +++ b/src/docker-compose.release-template.yml @@ -58,6 +58,8 @@ services: depends_on: - catalog-explorer - experiment-tracker + volumes: + - workspace_data:/srv/workspace restart: always reverse-proxy: @@ -76,4 +78,5 @@ services: volumes: storage_data: storage_meta: - experiment_data: \ No newline at end of file + experiment_data: + workspace_data: \ No newline at end of file From 8c60b4510c2b93079515603f9d9b323c1c0f2235 Mon Sep 17 00:00:00 2001 From: Mynt Labs Date: Thu, 19 Jun 2025 14:07:47 +1000 Subject: [PATCH 2/2] b version num in readme --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 49c0b1d..f9a76fc 100644 --- a/README.md +++ b/README.md @@ -3,7 +3,7 @@ FlintML Logo Text
- Version 0.1.23 + Version 0.1.24 License BSL 1.1