This repository was archived by the owner on Jul 25, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathdev.sh
More file actions
executable file
·403 lines (329 loc) · 7.18 KB
/
dev.sh
File metadata and controls
executable file
·403 lines (329 loc) · 7.18 KB
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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
#!/bin/sh
################################################################################
# Containerized Development Environment Manager #
# #
# This POSIX-compliant shell script uses the Docker CLI to create and manage #
# an individual containerized environment, including a volume that is used to #
# persist a home directory across container rebuilds. #
################################################################################
# Exit if a command fails.
set -e
# Command line client.
CLIENT=docker
#CLIENT=podman
# The name of the container.
CONTAINER=dev
# The name of the container host.
HOSTNAME=dev
# The container image tag.
IMAGE="kherge/dev:latest"
# The shell executable.
SHELL=bash
# The username.
USERNAME=dev
# The name of the volume.
VOLUME=dev
# Utilities ####################################################################
###
# Prints the given arguments if DEBUG is set to 1 (one).
#
# @param $@ The arguments to print.
##
debug()
{
if [ "$DEBUG" = '1' ]; then
echo "$@" >&2
fi
}
# Management ###################################################################
###
# Creates the new container.
##
container_create()
{
"$CLIENT" container create \
--hostname="$HOSTNAME" \
--init \
--name="$CONTAINER" \
--volume="$VOLUME:/home/dev" \
"$IMAGE" > /dev/null
}
###
# Checks if the container exists.
#
# @return 0|1 If it exists, 0 (zero) is returned. Otherwise, 1 (one) is returned.
##
container_exists()
{
if "$CLIENT" container inspect "$CONTAINER" > /dev/null 2> /dev/null; then
return 0
fi
return 1
}
###
# Checks if the container is running.
#
# @return 0|1 If it is running, 0 (zero) is returned. Otherwise, 1 (one) is returned.
##
container_is_running()
{
STATUS="$(container_status)"
if [ "$STATUS" = 'running' ]; then
return 0
fi
return 1
}
###
# Removes the existing container.
##
container_remove()
{
"$CLIENT" container rm "$CONTAINER" > /dev/null
}
###
# Executes a shell inside the running container.
##
container_shell()
{
"$CLIENT" container exec \
--interactive \
--tty \
--user="$USERNAME" \
--workdir="/home/$USERNAME" \
"$CONTAINER" "$SHELL"
}
###
# Starts the stopped or exited container.
##
container_start()
{
"$CLIENT" container start "$CONTAINER" > /dev/null
}
###
# Prints the status of the container.
#
# @stdout The status of the container.
##
container_status()
{
local FIELD
case "$CLIENT" in
docker) FIELD=".State";;
podman) FIELD=".Status";;
*)
echo "$CLIENT: client not supported" >&2
return 1
esac
STATUS="$("$CLIENT" ps --all --filter "name=$CONTAINER" --format "{{$FIELD}}")"
debug "Container status: $STATUS"
echo "$STATUS"
}
###
# Stops the running container.
##
container_stop()
{
"$CLIENT" container stop "$CONTAINER" > /dev/null
}
###
# Creates the new volume.
##
volume_create()
{
"$CLIENT" volume create "$VOLUME" > /dev/null
}
###
# Checks if the volume exists.
#
# @return 0|1 If it exists, 0 (zero) is returned. Otherwise, 1 (one) is returned.
##
volume_exists()
{
if "$CLIENT" volume inspect "$VOLUME" > /dev/null 2> /dev/null; then
return 0
fi
return 1
}
###
# Removes the existing volume.
##
volume_remove()
{
"$CLIENT" volume rm "$VOLUME" > /dev/null
}
# Commands #####################################################################
###
# Routes the container command to a subcommand.
#
# @param $@ The command line arguments.
##
cmd_container()
{
COMMAND="$1"
if [ "$COMMAND" = '' ]; then
COMMAND='help 0'
else
shift
if ! type "cmd_container_$COMMAND" > /dev/null; then
COMMAND='help 3'
fi
fi
cmd_container_$COMMAND "$@"
}
###
# Creates the container if it does not already exist.
##
cmd_container_create()
{
if ! container_exists; then
debug "Container does not existing, creating..."
container_create
fi
}
###
# Displays a help message for managing the container.
##
cmd_container_help()
{
CODE=$1
cat - >&2 <<USAGE
Usage: $(basename "$0") container COMMAND
Manages the container for the environment.
COMMAND
create Creates the container.
help Displays this help message.
remove Removes the container.
shell Runs a shell in the container.
start Starts the container.
stop Stops the container.
USAGE
exit $CODE
}
###
# Removes the container if it still exists.
##
cmd_container_remove()
{
if container_exists; then
debug "Container exists, removing..."
container_remove
fi
}
###
# Executes a shell inside the container.
#
# - If the volume does not exist, it is created.
# - If the container does not exist, it is created.
##
cmd_container_shell()
{
cmd_volume_create
cmd_container_start
container_shell
}
###
# Starts the container if it is not already running.
##
cmd_container_start()
{
cmd_container_create
if ! container_is_running; then
debug "Container is not running, starting..."
container_start
fi
}
###
# Stops the container if it is running.
##
cmd_container_stop()
{
if container_exists && container_is_running; then
debug "Container is running, stopping..."
container_stop
fi
}
###
# Displays a help message for managing the utility.
##
cmd_help()
{
CODE=$1
cat - >&2 <<USAGE
Usage: $(basename "$0") COMMAND
Manages a containerized development environment.
COMMAND
container Manages the container.
help Displays this help message.
volume Manages the volume.
USAGE
exit $CODE
}
###
# Routes the volume command to a subcommand.
#
# @param $@ The command line arguments.
##
cmd_volume()
{
COMMAND="$1"
if [ "$COMMAND" = '' ]; then
COMMAND='help 0'
else
shift
if ! type "cmd_volume_$COMMAND" > /dev/null; then
COMMAND='help 3'
fi
fi
cmd_volume_$COMMAND "$@"
}
###
# Creates the volume if it does not exist.
##
cmd_volume_create()
{
if ! volume_exists; then
debug "Volume does not existing, creating..."
volume_create
fi
}
###
# Displays a help message for managing the volume.
##
cmd_volume_help()
{
CODE=$1
cat - >&2 <<USAGE
Usage: $(basename "$0") volume COMMAND
Manages the volume for the environment.
COMMAND
create Creates the volume.
help Displays this help message.
remove Removes the volume.
USAGE
exit $CODE
}
###
# Removes the volume if it still exists.
##
cmd_volume_remove()
{
if volume_exists; then
debug "Volume exists, removing..."
volume_remove
fi
}
# CLI ##########################################################################
# Get the command specified.
COMMAND="$1"
# Default to running "./dev.sh container shell".
if [ "$COMMAND" = '' ]; then
COMMAND=container_shell
else
shift
# Default to running "./dev.sh help" with error exit status.
if ! type "cmd_$COMMAND" > /dev/null; then
COMMAND='help 3'
fi
fi
# Run the command.
cmd_$COMMAND "$@"