Skip to content

Commit d182546

Browse files
Merge pull request Sitecore#50 from mwillebrands/feature/DockerComposeV2
Fix volume mapping that will not work with docker-compose v2
2 parents c67315c + 0e24ac9 commit d182546

4 files changed

Lines changed: 8 additions & 8 deletions

File tree

custom-images/docker-compose.xm1.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,8 +16,8 @@ services:
1616
healthcheck:
1717
test: ["CMD", "traefik", "healthcheck", "--ping"]
1818
volumes:
19-
- source: \\.\pipe\docker_engine
20-
target: \\.\pipe\docker_engine
19+
- source: \\.\pipe\docker_engine\
20+
target: \\.\pipe\docker_engine\
2121
type: npipe
2222
- ./traefik:C:/etc/traefik
2323
depends_on:

custom-images/docker-compose.xp1.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,8 +16,8 @@ services:
1616
healthcheck:
1717
test: ["CMD", "traefik", "healthcheck", "--ping"]
1818
volumes:
19-
- source: \\.\pipe\docker_engine
20-
target: \\.\pipe\docker_engine
19+
- source: \\.\pipe\docker_engine\
20+
target: \\.\pipe\docker_engine\
2121
type: npipe
2222
- ./traefik:C:/etc/traefik
2323
depends_on:

custom-images/docker-compose.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,8 +16,8 @@ services:
1616
healthcheck:
1717
test: ["CMD", "traefik", "healthcheck", "--ping"]
1818
volumes:
19-
- source: \\.\pipe\docker_engine
20-
target: \\.\pipe\docker_engine
19+
- source: \\.\pipe\docker_engine\
20+
target: \\.\pipe\docker_engine\
2121
type: npipe
2222
- ./traefik:C:/etc/traefik
2323
depends_on:

getting-started/docker-compose.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,8 +16,8 @@ services:
1616
healthcheck:
1717
test: ["CMD", "traefik", "healthcheck", "--ping"]
1818
volumes:
19-
- source: \\.\pipe\docker_engine
20-
target: \\.\pipe\docker_engine
19+
- source: \\.\pipe\docker_engine\
20+
target: \\.\pipe\docker_engine\
2121
type: npipe
2222
- ./traefik:C:/etc/traefik
2323
depends_on:

0 commit comments

Comments
 (0)