Skip to content

Commit 266271f

Browse files
committed
Fix: add missing image specifier in 'lava-callback' and 'kcidb' services, remove useless volume mount
Signed-off-by: Simone Tollardo <tollsimy.dev@protonmail.com>
1 parent a90488e commit 266271f

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

docker-compose-kcidb.yaml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@ services:
99

1010
kcidb:
1111
container_name: 'kernelci-pipeline-kcidb'
12+
image: 'kernelci/staging-kernelci:pipeline'
1213
env_file: ['.env']
1314
stop_signal: 'SIGINT'
1415
networks: ['kcidb']
@@ -18,7 +19,7 @@ services:
1819
- 'run'
1920
- '--name=pipeline_kcidb'
2021
volumes:
21-
- './src:/home/kernelci/pipeline'
22+
# - './src:/home/kernelci/pipeline'
2223
- './config:/home/kernelci/config'
2324
- './data/kcidb:/home/kernelci/data/kcidb'
2425
- './logs:/home/kernelci/logs'

docker-compose-lava.yaml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,14 +10,15 @@ services:
1010
lava-callback:
1111
container_name: 'kernelci-pipeline-lava-callback'
1212
networks: ['lava-callback']
13+
image: 'kernelci/staging-kernelci:lava-callback'
1314
env_file: ['.env']
1415
ports:
1516
- '${LAVA_CALLBACK_PORT:-8100}:8000'
1617
# With Werkzeug development server, not suitable for a public instance
1718
command:
1819
- './src/lava_callback.py'
1920
volumes:
20-
- './src:/home/kernelci/pipeline'
21+
# - './src:/home/kernelci/pipeline'
2122
- './config:/home/kernelci/config'
2223
- './data/ssh:/home/kernelci/data/ssh'
2324
restart: on-failure

0 commit comments

Comments
 (0)