Skip to content

Commit e733c1f

Browse files
committed
chore(release): 1.0.1
1 parent d74bf44 commit e733c1f

File tree

2 files changed

+19
-3
lines changed

2 files changed

+19
-3
lines changed

.devcontainer/gen-docker-compose-workspace-env.sh

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
#!/usr/bin/env bash
22
# 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
44
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
66
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.
88
Future updates may break compatability."
99

1010
set -eu -o pipefail

CHANGELOG.md

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,22 @@ All notable changes to this project will be documented in this file.
55
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
66
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
77

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+
824
## [1.0.0] — 2022-04-05
925

1026
This version is tested with [Remote Containers] version `0.232.3` (2022-04-04).

0 commit comments

Comments
 (0)