Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix problems related to dockersand.bat #194

Merged
merged 3 commits into from
Jul 10, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -262,6 +262,10 @@ testing server much more quickly and easily on Windows, Mac, or Linux.
the base docker container name. You can overwrite this usage by setting the
$ProjectName variable in `dockersand.ps1` (for Windows) or the PROJECT_NAME
variable in `dockersand.sh` (for *nix) to the desired base container name.
- Windows users: By default, Windows Terminal may open a *Windows PowerShell*
prompt. Running any `./dockersand` commands in *Windows PowerShell* may trigger
security exceptions. You can avoid these by using the *Command Prompt* or by
running `Unblock-File dockersand.ps1`.

4) Once the build is complete, run `./dockersand start` to start the new containers
for the database and the dirtsand server. Once this command has been run, you should
Expand Down
3 changes: 2 additions & 1 deletion dockersand.bat
Original file line number Diff line number Diff line change
@@ -1 +1,2 @@
powershell.exe -ExecutionPolicy Bypass dockersand.ps1
@echo off
powershell.exe -NoProfile -ExecutionPolicy Bypass -File dockersand.ps1