mirror of
https://github.com/balena-os/balena-supervisor.git
synced 2024-12-20 06:07:57 +00:00
15 lines
436 B
Bash
15 lines
436 B
Bash
#!/bin/bash
|
|
|
|
if [ -f /usr/bin/rce ]; then
|
|
ENGINE=rce
|
|
else
|
|
ENGINE=docker
|
|
fi
|
|
|
|
CONTAINER_PID=$($ENGINE inspect --format '{{if .State.Running}}{{.State.Pid}}{{end}}' $1)
|
|
if [ -z $CONTAINER_PID ]; then
|
|
read -p "Application must be running for a terminal to be started."
|
|
else
|
|
nsenter --target $CONTAINER_PID --mount --uts --ipc --net --pid -- bash -c 'while IFS= read -r -d "" var; do export "$var"; done < /proc/1/environ; exec bash'
|
|
fi
|