-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdev.sh
executable file
·49 lines (42 loc) · 1.07 KB
/
dev.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
#!/bin/bash
# ----------------------------------------------------------------
# Build docker dev stage and add local code for live development
# ----------------------------------------------------------------
BASH_CMD=""
# Function to print usage
usage() {
echo "
Usage: dev.sh [-b|bash] [-h|--help]
Where:
-b | bash Open bash in docker container
-h | --help Show this help message
"
exit 1
}
# Parse command-line options
while [[ "$#" -gt 0 ]]; do
case $1 in
-b|bash)
BASH_CMD=bash
;;
-h|--help)
usage
;;
*)
echo "Unknown option: $1"
usage
;;
esac
shift
done
# Create logs dir
mkdir -p scripts/logs
# Build the Docker image
docker build \
-t av_ntrip_client:latest-dev \
-f Dockerfile --target dev .
# Run the Docker container and pass any provided arguments
docker run -it --rm --net host --privileged \
-v /etc/localtime:/etc/localtime:ro \
-v ./scripts:/workspace/scripts \
av_ntrip_client:latest-dev $BASH_CMD