Skip to content
Merged
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 CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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.

...

Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<img width="60%" src="docs/_assets/logo-text.png" alt="FlintML Logo Text" /><br/>

<!-- Badges, all inside the same HTML block -->
<img src="https://img.shields.io/badge/version-v0.1.23-cf051c" alt="Version 0.1.23" />
<img src="https://img.shields.io/badge/version-v0.1.24-cf051c" alt="Version 0.1.24" />
<img src="https://img.shields.io/badge/license-BSL_1.1-blue" alt="License BSL 1.1" />

</br>
Expand Down Expand Up @@ -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

Expand Down
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
0.1.23
0.1.24
3 changes: 3 additions & 0 deletions src/docker-compose.build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -64,6 +64,8 @@ services:
depends_on:
- catalog-explorer
- experiment-tracker
volumes:
- workspace_data:/srv/workspace
restart: always

reverse-proxy:
Expand All @@ -83,3 +85,4 @@ volumes:
storage_data:
storage_meta:
experiment_data:
workspace_data:
5 changes: 4 additions & 1 deletion src/docker-compose.release-template.yml
Original file line number Diff line number Diff line change
Expand Up @@ -58,6 +58,8 @@ services:
depends_on:
- catalog-explorer
- experiment-tracker
volumes:
- workspace_data:/srv/workspace
restart: always

reverse-proxy:
Expand All @@ -76,4 +78,5 @@ services:
volumes:
storage_data:
storage_meta:
experiment_data:
experiment_data:
workspace_data: