1- # FitGirl Updater Docker Management Script for Windows PowerShell
1+ # FitGirl Downloader Docker Management Script for Windows PowerShell
22
33param (
44 [Parameter (Mandatory = $false )]
@@ -28,7 +28,7 @@ function Write-Error-Custom {
2828
2929# Function to build the Docker image
3030function Build-Image {
31- Write-Status " Building FitGirl Updater Docker image..."
31+ Write-Status " Building FitGirl Downloader Docker image..."
3232 docker- compose build
3333 if ($LASTEXITCODE -eq 0 ) {
3434 Write-Success " Docker image built successfully!"
@@ -40,7 +40,7 @@ function Build-Image {
4040
4141# Function to start the container
4242function Start-Container {
43- Write-Status " Starting FitGirl Updater container..."
43+ Write-Status " Starting FitGirl Downloader container..."
4444 docker- compose up - d
4545 if ($LASTEXITCODE -eq 0 ) {
4646 Write-Success " Container started successfully!"
@@ -53,7 +53,7 @@ function Start-Container {
5353
5454# Function to stop the container
5555function Stop-Container {
56- Write-Status " Stopping FitGirl Updater container..."
56+ Write-Status " Stopping FitGirl Downloader container..."
5757 docker- compose down
5858 if ($LASTEXITCODE -eq 0 ) {
5959 Write-Success " Container stopped successfully!"
@@ -65,7 +65,7 @@ function Stop-Container {
6565
6666# Function to restart the container
6767function Restart-Container {
68- Write-Status " Restarting FitGirl Updater container..."
68+ Write-Status " Restarting FitGirl Downloader container..."
6969 Stop-Container
7070 Start-Container
7171}
@@ -109,7 +109,7 @@ function Rebuild-All {
109109
110110# Help function
111111function Show-Help {
112- Write-Host " FitGirl Updater Docker Management Script for Windows" - ForegroundColor Cyan
112+ Write-Host " FitGirl Downloader Docker Management Script for Windows" - ForegroundColor Cyan
113113 Write-Host " "
114114 Write-Host " Usage: .\docker-scripts.ps1 [COMMAND]" - ForegroundColor White
115115 Write-Host " "
0 commit comments