mirror of
https://github.com/tillitis/tillitis-key1.git
synced 2025-08-09 15:12:11 -04:00
podman/docker: Run bash as login shell
To get bash to source /etc/profile and get the goodness of /etc/profile/bash_completion.sh, run bash as a login shell.
This commit is contained in:
parent
a266a38faf
commit
2d5dfdc40f
1 changed files with 2 additions and 2 deletions
|
@ -23,11 +23,11 @@ all:
|
||||||
|
|
||||||
run:
|
run:
|
||||||
podman run --rm --mount type=bind,source="`pwd`/../",target=/build -w /build -it \
|
podman run --rm --mount type=bind,source="`pwd`/../",target=/build -w /build -it \
|
||||||
$(IMAGE) /usr/bin/bash
|
$(IMAGE) /usr/bin/bash -l
|
||||||
|
|
||||||
docker-run:
|
docker-run:
|
||||||
docker run --rm --mount type=bind,source="`pwd`/../",target=/build -w /build -it \
|
docker run --rm --mount type=bind,source="`pwd`/../",target=/build -w /build -it \
|
||||||
$(IMAGE) /usr/bin/bash
|
$(IMAGE) /usr/bin/bash -l
|
||||||
|
|
||||||
run-make:
|
run-make:
|
||||||
podman run --rm --mount type=bind,source="`pwd`/../hw/application_fpga",target=/build -w /build -it \
|
podman run --rm --mount type=bind,source="`pwd`/../hw/application_fpga",target=/build -w /build -it \
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue