Skip to content

Commit 81a50d0

Browse files
committed
Name the first build stage something other than "qsim"
It gets hard to know what is happening when everthing is called "qsim".
1 parent 9efe1cd commit 81a50d0

1 file changed

Lines changed: 5 additions & 3 deletions

File tree

docker-compose.yml

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,12 @@
11
services:
2-
qsim:
2+
qsim-base:
33
platform: linux/amd64
44
image: qsim
55
container_name: qsim
66
build:
77
context: ./
88
dockerfile: Dockerfile
9+
910
qsim-cxx-tests:
1011
platform: linux/amd64
1112
image: qsim-cxx-tests
@@ -14,7 +15,8 @@ services:
1415
context: ./
1516
dockerfile: tests/Dockerfile
1617
depends_on:
17-
- qsim
18+
- qsim-base
19+
1820
qsim-py-tests:
1921
platform: linux/amd64
2022
image: qsim-py-tests
@@ -23,4 +25,4 @@ services:
2325
context: ./
2426
dockerfile: pybind_interface/Dockerfile
2527
depends_on:
26-
- qsim
28+
- qsim-base

0 commit comments

Comments
 (0)