File tree Expand file tree Collapse file tree 2 files changed +19
-3
lines changed Expand file tree Collapse file tree 2 files changed +19
-3
lines changed Original file line number Diff line number Diff line change 1
1
#! /usr/bin/env bash
2
2
# Copyright 2022 Hal Blackburn. MIT License.
3
- VERSION=" gen-docker-compose-workspace-env.sh version 1.0.0
3
+ VERSION=" gen-docker-compose-workspace-env.sh version 1.0.1
4
4
5
- https://github.com/h4l/dev-container-docker-compose-volume-or-bind/tree/v1.0.0
5
+ https://github.com/h4l/dev-container-docker-compose-volume-or-bind/tree/v1.0.1
6
6
7
- Tested with Remote Containers plugin version 0.232.3 (2022-04-04)
7
+ Tested with Remote Containers plugin version 0.232.3 - 0.232.6.
8
8
Future updates may break compatability."
9
9
10
10
set -eu -o pipefail
Original file line number Diff line number Diff line change @@ -5,6 +5,22 @@ All notable changes to this project will be documented in this file.
5
5
The format is based on [ Keep a Changelog] ( https://keepachangelog.com/en/1.0.0/ ) ,
6
6
and this project adheres to [ Semantic Versioning] ( https://semver.org/spec/v2.0.0.html ) .
7
7
8
+ ## [ 1.0.1] — 2022-04-15
9
+
10
+ - Fixed bind-mount devcontainers failing to start due to the
11
+ ` devcontainer-volume ` being marked as external, but not existing. The
12
+ ` docker-compose.yml ` examples now define the ` devcontainer-volume ` like this:
13
+
14
+ ```
15
+ volumes:
16
+ devcontainer-volume:
17
+ name: ${WORKSPACE_CONTAINER_VOLUME_SOURCE:-not-used-in-bind-mount-workspace}
18
+ external: ${WORKSPACE_IS_CONTAINER_VOLUME:?}
19
+ ```
20
+
21
+ This version is tested with [ Remote Containers] version ` 0.232.3 ` –
22
+ ` 0.232.6 ` .
23
+
8
24
## [ 1.0.0] — 2022-04-05
9
25
10
26
This version is tested with [ Remote Containers] version ` 0.232.3 ` (2022-04-04).
You can’t perform that action at this time.
0 commit comments