Skip to content

Commit

Permalink
Use shared mount
Browse files Browse the repository at this point in the history
  • Loading branch information
otto-ifak committed Nov 12, 2024
1 parent b5ed358 commit a0aca9e
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion test/acceptance/server.py
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,8 @@ def start_server() -> str:
'docker', 'run',
'--publish', '5001:5001',
'--detach',
'--volume', f'{test_data_dir}:/AasxServerBlazor/aasxs',
# In Github actions, only shared volumes are allowed (suffix z)
'--volume', f'{test_data_dir}:/AasxServerBlazor/aasxs:z',
'docker.io/adminshellio/aasx-server-blazor-for-demo:main',
])
return container_id.decode().strip()
Expand Down

0 comments on commit a0aca9e

Please sign in to comment.