Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Menu
Open sidebar
TASTE
taste-setup
Commits
bde761a0
Commit
bde761a0
authored
Oct 07, 2017
by
Thanassis Tsiodras
Browse files
A launch script to make life easier for Docker users.
parent
9bc4954c
Changes
1
Hide whitespace changes
Inline
Side-by-side
Docker-run.sh
0 → 100755
View file @
bde761a0
#!/bin/bash
if
!
command
-v
docker
;
then
echo
"[x] You don't have Docker installed. Aborting..."
exit
1
fi
docker images |
grep
^taste
>
/dev/null
||
{
echo
"[x] You haven't built the TASTE Docker container."
echo
'[x] You need to execute this to create it:'
echo
'[x]'
echo
'[x] docker build -t taste .'
echo
'[x]'
exit
1
}
echo
'[-] ==========================================='
echo
'[-] Both Docker and the TASTE image were found.'
echo
'[-] You will be able to run all TASTE applications, including X11 ones,'
echo
-e
"[-] and
\e
[1m
\e
[31m your
\$
HOME folder is mapped under /root/work (save files ONLY
\e
[0m"
echo
-e
"[-]
\e
[1m
\e
[31m there, everything else will be deleted when the container dies).
\e
[0m"
echo
-e
'[-] Also, \e[1m\e[32m the TASTE repositories are under /root/tool-src.\e[0m'
echo
'[-]'
echo
'[-] Launching the TASTE Docker container...'
echo
'[-]'
HOMEB
=
/root
XSOCK
=
/tmp/.X11-unix
XAUTH
=
/tmp/.docker.xauth
touch
${
XAUTH
}
xauth nlist :0 |
sed
-e
's/^..../ffff/'
| xauth
-f
${
XAUTH
}
nmerge -
docker run
\
-e
DISPLAY
\
-e
XAUTHORITY
=
${
XAUTH
}
\
-v
${
XSOCK
}
:
${
XSOCK
}
\
-v
${
XAUTH
}
:
${
XAUTH
}
\
-v
"
$HOME
"
:
"
$HOMEB
"
/work
\
-it
taste /bin/bash
-i
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment