Skip to content
This repository has been archived by the owner on Feb 1, 2024. It is now read-only.

Commit

Permalink
Add Missing Isolation ID to docker compose files
Browse files Browse the repository at this point in the history
This will fix an issue with colliding images when
running the build in Jenkins.

Signed-off-by: Andrea Gunderson <agunde@bitwise.io>
  • Loading branch information
agunde406 committed Apr 3, 2019
1 parent 6add2d7 commit 337e772
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 7 deletions.
4 changes: 2 additions & 2 deletions docker-compose.yaml
Expand Up @@ -76,7 +76,7 @@ services:
stop_signal: SIGKILL

sabre-tp:
image: sabre-tp
image: sabre-tp:${ISOLATION_ID}
container_name: sabre-tp
entrypoint: "bash -c \"\
cd /project/tp/ && \
Expand All @@ -89,7 +89,7 @@ services:
context: tp

sabre-cli:
image: sabre-cli
image: sabre-cli:${ISOLATION_ID}
container_name: sabre-cli
volumes:
- .:/project
Expand Down
2 changes: 1 addition & 1 deletion docs/docker-compose.yaml
Expand Up @@ -16,7 +16,7 @@ version: "2.1"

services:
sabre-docs:
image: sabre-docs
image: sabre-docs:${ISOLATION_ID}
container_name: sabre-docs
volumes:
- ..:/project
Expand Down
8 changes: 4 additions & 4 deletions integration/sabre_test.yaml
Expand Up @@ -33,7 +33,7 @@ services:
\""

build_intkey_multiply:
image: build_intkey_multiply
image: build_intkey_multiply:${ISOLATION_ID}
container_name: build_intkey_multiply
volumes:
- .:/project
Expand All @@ -45,7 +45,7 @@ services:
context: integration

build_pike:
image: build_pike
image: build_pike:${ISOLATION_ID}
container_name: build_pike
volumes:
- .:/project
Expand All @@ -58,7 +58,7 @@ services:
context: integration

build_intkey:
image: build_intkey
image: build_intkey:${ISOLATION_ID}
container_name: build_intkey
volumes:
- .:/project
Expand All @@ -72,7 +72,7 @@ services:


test_sabre:
image: test_sabre:ISOLATION_ID
image: test_sabre:${ISOLATION_ID}
container_name: test_sabre
depends_on:
- rest-api
Expand Down

0 comments on commit 337e772

Please sign in to comment.