seafile-containerized/launcher
Steve Divskinsy 194e6b4922
Update launcher
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.
2018-05-02 15:49:04 +09:30

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 "================================================================================================================================="