a2svior
a2svior
MModular
Created by Jack Clayton on 5/11/2024 in #community-showcase
Lightbug HTTP: Mojo web framework
I guess we can call Lightbug production-ready now 😁 (joking)
467 replies
MModular
Created by Jack Clayton on 5/11/2024 in #community-showcase
Lightbug HTTP: Mojo web framework
https://lightbug.buzz/ is also buzzing along so far
467 replies
MModular
Created by Jack Clayton on 5/11/2024 in #community-showcase
Lightbug HTTP: Mojo web framework
1. You're using docker run -d to run the container in detached mode, which is correct for running in the background.
2. At the end of your script, you're executing docker start "$CONTAINER_NAME" unnecessarily since the container should already be running from the docker run command. 3. Most importantly, your container is likely stopping immediately after starting because there's no process keeping it alive. The Solution To keep your container running without needing to manually restart it, you need to ensure: 1. The container's main process stays running: Docker containers stop when their main process exits. 2. Remove the redundant docker start command: It's not needed if your container is configured correctly.
467 replies
MModular
Created by Jack Clayton on 5/11/2024 in #community-showcase
Lightbug HTTP: Mojo web framework
# 4. Run a new container from the pulled image with restart policy
echo "- Running new container '$CONTAINER_NAME' from image '$IMAGE_NAME'..."
docker run -d \
-p 8080:8080 \
--name "$CONTAINER_NAME" \
--restart unless-stopped \
"$IMAGE_NAME"

RUN_EXIT_CODE=$? # Capture exit code of 'docker run'

if [ $RUN_EXIT_CODE -eq 0 ]; then
echo " ✓ New container '$CONTAINER_NAME' started successfully."
else
echo " ✗ ERROR: Failed to run new container '$CONTAINER_NAME' (exit code: $RUN_EXIT_CODE). Please check for errors above."
exit 1 # Exit script with error code
fi
echo ""

# 5. Verify the container is running
echo "- Verifying container is running..."
if docker ps | grep -q "$CONTAINER_NAME"; then
echo " ✓ Container '$CONTAINER_NAME' is running."
else
echo " ✗ WARNING: Container '$CONTAINER_NAME' is not running. Check the logs with 'docker logs $CONTAINER_NAME'."
fi
echo ""

echo "--- Docker Container Update Script Completed ---"
echo "Application should now be updated and running in container '$CONTAINER_NAME'."
echo "Access it at http://<your_instance_public_ip_address>:8080"

exit 0 # Exit script with success code
# 4. Run a new container from the pulled image with restart policy
echo "- Running new container '$CONTAINER_NAME' from image '$IMAGE_NAME'..."
docker run -d \
-p 8080:8080 \
--name "$CONTAINER_NAME" \
--restart unless-stopped \
"$IMAGE_NAME"

RUN_EXIT_CODE=$? # Capture exit code of 'docker run'

if [ $RUN_EXIT_CODE -eq 0 ]; then
echo " ✓ New container '$CONTAINER_NAME' started successfully."
else
echo " ✗ ERROR: Failed to run new container '$CONTAINER_NAME' (exit code: $RUN_EXIT_CODE). Please check for errors above."
exit 1 # Exit script with error code
fi
echo ""

# 5. Verify the container is running
echo "- Verifying container is running..."
if docker ps | grep -q "$CONTAINER_NAME"; then
echo " ✓ Container '$CONTAINER_NAME' is running."
else
echo " ✗ WARNING: Container '$CONTAINER_NAME' is not running. Check the logs with 'docker logs $CONTAINER_NAME'."
fi
echo ""

echo "--- Docker Container Update Script Completed ---"
echo "Application should now be updated and running in container '$CONTAINER_NAME'."
echo "Access it at http://<your_instance_public_ip_address>:8080"

exit 0 # Exit script with success code
467 replies
MModular
Created by Jack Clayton on 5/11/2024 in #community-showcase
Lightbug HTTP: Mojo web framework
@carlcaulkett asked Claude, it suggests a couple changes in these parts of the script (only sent it the latest section):
#!/bin/bash

# Set variables
CONTAINER_NAME="your-container-name"
IMAGE_NAME="ghcr.io/your-org/your-image:latest"

echo "--- Docker Container Update Script Starting ---"

# 1. Check if Docker is running
echo "- Checking if Docker is running..."
if ! docker info > /dev/null 2>&1; then
echo " ✗ ERROR: Docker is not running. Please start Docker and try again."
exit 1
fi
echo " ✓ Docker is running."
echo ""

# 2. Stop and remove the existing container (if it exists)
echo "- Stopping and removing existing container '$CONTAINER_NAME' (if it exists)..."
docker stop "$CONTAINER_NAME" > /dev/null 2>&1
docker rm "$CONTAINER_NAME" > /dev/null 2>&1
echo " ✓ Container '$CONTAINER_NAME' stopped and removed if it existed."
echo ""

# 3. Pull the latest Docker image from GHCR
echo "- Pulling latest Docker image '$IMAGE_NAME' from GHCR..."
docker pull "$IMAGE_NAME"
PULL_EXIT_CODE=$? # Capture exit code of 'docker pull'

if [ $PULL_EXIT_CODE -eq 0 ]; then
echo " ✓ Docker image '$IMAGE_NAME' pulled successfully."
else
echo " ✗ ERROR: Failed to pull Docker image '$IMAGE_NAME' (exit code: $PULL_EXIT_CODE). Aborting."
exit 1 # Exit script with error code
fi
echo ""
#!/bin/bash

# Set variables
CONTAINER_NAME="your-container-name"
IMAGE_NAME="ghcr.io/your-org/your-image:latest"

echo "--- Docker Container Update Script Starting ---"

# 1. Check if Docker is running
echo "- Checking if Docker is running..."
if ! docker info > /dev/null 2>&1; then
echo " ✗ ERROR: Docker is not running. Please start Docker and try again."
exit 1
fi
echo " ✓ Docker is running."
echo ""

# 2. Stop and remove the existing container (if it exists)
echo "- Stopping and removing existing container '$CONTAINER_NAME' (if it exists)..."
docker stop "$CONTAINER_NAME" > /dev/null 2>&1
docker rm "$CONTAINER_NAME" > /dev/null 2>&1
echo " ✓ Container '$CONTAINER_NAME' stopped and removed if it existed."
echo ""

# 3. Pull the latest Docker image from GHCR
echo "- Pulling latest Docker image '$IMAGE_NAME' from GHCR..."
docker pull "$IMAGE_NAME"
PULL_EXIT_CODE=$? # Capture exit code of 'docker pull'

if [ $PULL_EXIT_CODE -eq 0 ]; then
echo " ✓ Docker image '$IMAGE_NAME' pulled successfully."
else
echo " ✗ ERROR: Failed to pull Docker image '$IMAGE_NAME' (exit code: $PULL_EXIT_CODE). Aborting."
exit 1 # Exit script with error code
fi
echo ""
467 replies
MModular
Created by Jack Clayton on 5/11/2024 in #community-showcase
Lightbug HTTP: Mojo web framework
Which command did you use to start it initially?
467 replies
MModular
Created by Jack Clayton on 5/11/2024 in #community-showcase
Lightbug HTTP: Mojo web framework
Nice 👍
467 replies
MModular
Created by Jack Clayton on 5/11/2024 in #community-showcase
Lightbug HTTP: Mojo web framework
I'm in DigitalOcean, but on a small droplet using swap files to overcome the ram limitations, I guess that's why it's so slow
467 replies
MModular
Created by Jack Clayton on 5/11/2024 in #community-showcase
Lightbug HTTP: Mojo web framework
The main server loop logic, we were raising in some cases and the server would stop running, while we should have just logged/returned a BadRequest to the client, e.g in case if malformated requests. There are still some improvements to be made there, but I'm taking it one step at a time
467 replies
MModular
Created by Jack Clayton on 5/11/2024 in #community-showcase
Lightbug HTTP: Mojo web framework
Thanks again for catching the bug
467 replies
MModular
Created by Jack Clayton on 5/11/2024 in #community-showcase
Lightbug HTTP: Mojo web framework
Looks good so far on my end as well!
467 replies
MModular
Created by Jack Clayton on 5/11/2024 in #community-showcase
Lightbug HTTP: Mojo web framework
I've also got an instance running at https://lightbug.buzz/ , let's see for how long this keeps running
467 replies
MModular
Created by Jack Clayton on 5/11/2024 in #community-showcase
Lightbug HTTP: Mojo web framework
Yes, let's see 😈
467 replies
MModular
Created by Jack Clayton on 5/11/2024 in #community-showcase
Lightbug HTTP: Mojo web framework
my bad, didn't push the latest version to Prefix. What about now?
467 replies
MModular
Created by Jack Clayton on 5/11/2024 in #community-showcase
Lightbug HTTP: Mojo web framework
Couldn't reproduce this exact error but pushed a fix that might solve it. Can you try 0.1.16? https://github.com/Lightbug-HQ/lightbug_http/releases/tag/v0.1.16
467 replies
MModular
Created by Jack Clayton on 5/11/2024 in #community-showcase
Lightbug HTTP: Mojo web framework
No-no, thanks for all the feedback! It's really valuable , you're catching issues that our integration and unit tests aren't covering 😅
467 replies
MModular
Created by Jack Clayton on 5/11/2024 in #community-showcase
Lightbug HTTP: Mojo web framework
yeah, looks like the same error. i can check it out this week
467 replies
MModular
Created by Jack Clayton on 5/11/2024 in #community-showcase
Lightbug HTTP: Mojo web framework
Hmm, we might need to add proper error handling in this part. The server shouldn't die because of this
467 replies
MModular
Created by Jack Clayton on 5/11/2024 in #community-showcase
Lightbug HTTP: Mojo web framework
Yup , I see it!
467 replies
MModular
Created by Jack Clayton on 5/11/2024 in #community-showcase
Lightbug HTTP: Mojo web framework
Thank you @toasty for spotting this 🤝
467 replies