diff --git a/setup/docker/windows/install.bat b/setup/docker/windows/install.bat index 0d7e9ec72..67cf494eb 100644 --- a/setup/docker/windows/install.bat +++ b/setup/docker/windows/install.bat @@ -12,12 +12,12 @@ Rem Rem curl.exe -o install.bat https://dl.photoprism.app/docker/windows/install.bat Rem install.bat -echo "Checking Docker version..." +echo Checking Docker version... docker --version docker compose version -echo "Downloading config files..." +echo Downloading config files... curl.exe -o docker-compose.yml https://dl.photoprism.app/docker/windows/docker-compose.yml curl.exe -o start.bat https://dl.photoprism.app/docker/windows/start.bat @@ -26,19 +26,19 @@ curl.exe -o uninstall.bat https://dl.photoprism.app/docker/windows/uninstall.bat dir -echo "Pulling Docker images..." +echo Pulling Docker images... docker compose pull -echo "Starting PhotoPrism and MariaDB..." +echo Starting PhotoPrism and MariaDB... docker compose up -d Start-Sleep -Seconds 10 -echo "Please open the Web UI by navigating to http://localhost:2342/. You should see a login screen." -echo "Then log in with the user 'admin' and the password you have specified in PHOTOPRISM_ADMIN_PASSWORD (default is 'insecure')." -echo "You can change it on the account settings page. If you enable public mode, authentication will be disabled." -echo "Enjoy!" +echo Please open the Web UI by navigating to http://localhost:2342/. You should see a login screen. +echo Then log in with the user 'admin' and the password you have specified in PHOTOPRISM_ADMIN_PASSWORD (default is 'insecure'). +echo You can change it on the account settings page. If you enable public mode, authentication will be disabled. +echo Enjoy! START http://localhost:2342/ \ No newline at end of file diff --git a/setup/docker/windows/start.bat b/setup/docker/windows/start.bat index d5337362a..ba2d8acf3 100644 --- a/setup/docker/windows/start.bat +++ b/setup/docker/windows/start.bat @@ -1,6 +1,6 @@ -echo "Starting PhotoPrism and MariaDB..." +echo Starting PhotoPrism and MariaDB... docker compose up -d docker compose logs -f -echo "Done." \ No newline at end of file +echo Done. \ No newline at end of file diff --git a/setup/docker/windows/stop.bat b/setup/docker/windows/stop.bat index f43ce00f1..78cfe86f4 100644 --- a/setup/docker/windows/stop.bat +++ b/setup/docker/windows/stop.bat @@ -1,5 +1,5 @@ -echo "Stopping PhotoPrism and MariaDB..." +echo Stopping PhotoPrism and MariaDB... docker compose stop -echo "Done." \ No newline at end of file +echo Done. \ No newline at end of file diff --git a/setup/docker/windows/uninstall.bat b/setup/docker/windows/uninstall.bat index ecee2044f..65c2b6681 100644 --- a/setup/docker/windows/uninstall.bat +++ b/setup/docker/windows/uninstall.bat @@ -4,11 +4,11 @@ setlocal SET /P AREYOUSURE=Are you sure (Y/[N])? IF /I "%AREYOUSURE%" NEQ "Y" GOTO END -echo "Stopping PhotoPrism and MariaDB..." +echo Stopping PhotoPrism and MariaDB... docker compose down -v -echo "Removing Docker images..." +echo Removing Docker images... docker compose rm -s -v diff --git a/setup/docker/windows/update.bat b/setup/docker/windows/update.bat index 2974652c8..87c4b6c65 100644 --- a/setup/docker/windows/update.bat +++ b/setup/docker/windows/update.bat @@ -1,10 +1,10 @@ -echo "Pulling Docker images..." +echo Pulling Docker images... docker compose pull -echo "Restarting PhotoPrism and MariaDB..." +echo Restarting PhotoPrism and MariaDB... docker compose stop docker compose up -d -echo "Done." \ No newline at end of file +echo Done. \ No newline at end of file