Skip to content

Commit

Permalink
Fix docker-compose for ci
Browse files Browse the repository at this point in the history
  • Loading branch information
baszoetekouw committed Dec 22, 2023
1 parent 88e3cf1 commit 0623b36
Showing 1 changed file with 2 additions and 4 deletions.
6 changes: 2 additions & 4 deletions docker/docker-compose.yml.py
Original file line number Diff line number Diff line change
Expand Up @@ -115,10 +115,8 @@ def host_config(num: int, name: str) -> Dict[str, Any]:

if args.ci:
if name == 'sbs':
data.update({
'depends_on': ['db', 'redis', 'test'],
'volumes': ['../ci-runner:/tmp/ci-runner'],
})
data['depends_on'] = ['db', 'redis', 'test']
data['volumes'] += ['../ci-runner:/tmp/ci-runner']

return data

Expand Down

0 comments on commit 0623b36

Please sign in to comment.