mirror of
https://github.com/ggogel/seafile-containerized.git
synced 2024-11-16 17:05:32 +00:00
194e6b4922
Print working directory correctly (running ./launcher in /opt/dockerdata/seafile for example would spit out /opt/dockerdata/shared as the volume location). No such image seafileltd/server, so update to reflect seafileltd/seafile location.
13 lines
749 B
Bash
Executable file
13 lines
749 B
Bash
Executable file
#!/bin/bash
|
|
|
|
echo "================================================================================================================================="
|
|
echo "The launcher script is now deprecated. Please see https://github.com/haiwen/seafile-docker/blob/master/upgrade_from_old_format.md"
|
|
echo "================================================================================================================================="
|
|
echo
|
|
echo "Or run this command directly:"
|
|
echo
|
|
echo " docker rm -f seafile"
|
|
echo " docker run -d -it --name seafile -v $PWD/shared:/shared -p 80:80 -p 443:443 seafileltd/seafile"
|
|
echo
|
|
echo "================================================================================================================================="
|