This commit is contained in:
oliver
2026-04-21 17:29:54 -03:00
commit 3deb54f5aa
116 changed files with 4551 additions and 0 deletions
Executable
+15
View File
@@ -0,0 +1,15 @@
#!/bin/bash
SERVICE_NAME="alpine"
# Check if the container is running
RUNNING=$(docker compose ps -q $SERVICE_NAME)
if [ -z "$RUNNING" ]; then
echo "Container not running. Starting..."
docker compose up -d $SERVICE_NAME
fi
# Connect to the running container
docker compose exec -it $SERVICE_NAME sh