Gros refactoring
This commit is contained in:
parent
6008aa68f6
commit
4a6bfc951f
368 changed files with 22503 additions and 3 deletions
16
run_docker_compose.ps1
Normal file
16
run_docker_compose.ps1
Normal file
|
@ -0,0 +1,16 @@
|
|||
# PowerShell script (for Windows)
|
||||
|
||||
# Check if docker-compose is installed
|
||||
if (!(Get-Command docker-compose -ErrorAction SilentlyContinue)) {
|
||||
Write-Host "docker-compose could not be found. Please install it and try again."
|
||||
exit 1
|
||||
}
|
||||
|
||||
# Check if .env file exists
|
||||
if (!(Test-Path .env)) {
|
||||
Write-Host ".env file not found. Please create it and try again."
|
||||
exit 1
|
||||
}
|
||||
|
||||
# Run docker-compose
|
||||
docker-compose --env-file .env up --build
|
Loading…
Add table
Add a link
Reference in a new issue