[FIX] docker: remove dot from docker name
This commit is contained in:
parent
7e5ae534db
commit
e48214165a
5 changed files with 10 additions and 0 deletions
|
|
@ -2,5 +2,7 @@
|
|||
|
||||
CURRENT=$(pwd)
|
||||
BASENAME=$(basename "${CURRENT}")
|
||||
# Docker remove dot
|
||||
BASENAME="${BASENAME//./}"
|
||||
|
||||
docker exec -u root -ti ${BASENAME}_ERPLibre_1 bash
|
||||
|
|
|
|||
|
|
@ -2,6 +2,8 @@
|
|||
|
||||
CURRENT=$(pwd)
|
||||
BASENAME=$(basename "${CURRENT}")
|
||||
# Docker remove dot
|
||||
BASENAME="${BASENAME//./}"
|
||||
|
||||
docker exec -u root -ti ${BASENAME}_ERPLibre_1 /bin/bash -c "\
|
||||
cd /ERPLibre; \
|
||||
|
|
|
|||
|
|
@ -2,6 +2,8 @@
|
|||
|
||||
CURRENT=$(pwd)
|
||||
BASENAME=$(basename "${CURRENT}")
|
||||
# Docker remove dot
|
||||
BASENAME="${BASENAME//./}"
|
||||
|
||||
docker exec -u root -ti ${BASENAME}_ERPLibre_1 /bin/bash -c "\
|
||||
cd /ERPLibre; \
|
||||
|
|
|
|||
|
|
@ -2,6 +2,8 @@
|
|||
|
||||
CURRENT=$(pwd)
|
||||
BASENAME=$(basename "${CURRENT}")
|
||||
# Docker remove dot
|
||||
BASENAME="${BASENAME//./}"
|
||||
|
||||
docker exec -u root -ti ${BASENAME}_ERPLibre_1 /bin/bash -c "\
|
||||
cd /ERPLibre; \
|
||||
|
|
|
|||
|
|
@ -2,6 +2,8 @@
|
|||
|
||||
CURRENT=$(pwd)
|
||||
BASENAME=$(basename "${CURRENT}")
|
||||
# Docker remove dot
|
||||
BASENAME="${BASENAME//./}"
|
||||
|
||||
docker exec -u root -ti ${BASENAME}_ERPLibre_1 /bin/bash -c "\
|
||||
cd /ERPLibre; \
|
||||
|
|
|
|||
Loading…
Reference in a new issue