You've already forked OpenUxAS-SoI
mirror of
https://github.com/AdaCore/OpenUxAS-SoI.git
synced 2026-02-12 13:04:49 -08:00
28 lines
801 B
Bash
Executable File
28 lines
801 B
Bash
Executable File
#!/bin/bash
|
|
|
|
|
|
#!/bin/bash -e
|
|
|
|
# if [ ! "$(docker ps -q -f name=uxas_develop)" ]; then
|
|
# if [ "$(docker ps -aq -f status=exited -f name=uxas_develop)" ]; then
|
|
# docker rm uxas_develop
|
|
# fi
|
|
# # run your container
|
|
# docker run \
|
|
# -it \
|
|
# -d \
|
|
# --name uxas_develop -w="/UxASDev/OpenUxAS"\
|
|
# --mount type=bind,source="${PWD}/../../..",target="/UxASDev" steveras/uxas-build:x86_64
|
|
# fi
|
|
|
|
echo "##### DOCKER RUN #####"
|
|
docker run -it -d \
|
|
--name uxas_develop -w="/UxASDev/OpenUxAS"\
|
|
--mount type=bind,source="${PWD}/../../..",target="/UxASDev" uxas_develop
|
|
|
|
|
|
echo "##### RunLmcpGen #####"
|
|
docker exec -it uxas_develop bash /UxASDev/OpenUxAS/RunLmcpGen.sh
|
|
echo "##### buildUxAS #####"
|
|
docker exec -it uxas_develop bash /UxASDev/OpenUxAS/docker/develop/buildUxAS.sh
|