add caddy to compose file

This commit is contained in:
Torben Haack 2024-10-11 07:11:21 +02:00
parent c03ddaf238
commit 80ebaec7f6
5 changed files with 68 additions and 26 deletions

View File

@ -1,50 +1,79 @@
#!/bin/bash #!/bin/bash
# Specify the image name and tag # Specify the image names and tags
IMAGE_NAME="myp-rp" MYP_RP_IMAGE_NAME="myp-rp"
IMAGE_TAG="latest" MYP_RP_IMAGE_TAG="latest"
CADDY_IMAGE_NAME="caddy"
CADDY_IMAGE_TAG="latest"
# Create a new builder instance with a sensible name # Create a new builder instance with a sensible name
BUILDER_NAME="myp-rp-arm64-builder" BUILDER_NAME="myp-rp-arm64-builder"
echo "Creating a new builder instance named $BUILDER_NAME..." echo "Creating a new builder instance named $BUILDER_NAME..."
docker buildx create --name $BUILDER_NAME --use docker buildx create --name $BUILDER_NAME --use
# Build the Docker image from Dockerfile for arm64 # Build the myp-rp Docker image from Dockerfile for arm64
echo "Building Docker image from Dockerfile for arm64..." echo "Building myp-rp Docker image from Dockerfile for arm64..."
docker buildx build --platform linux/arm64 -t ${IMAGE_NAME}:${IMAGE_TAG} -f $PWD/Dockerfile $PWD --output type=docker,dest=docker/${IMAGE_NAME}_${IMAGE_TAG}.tar docker buildx build --platform linux/arm64 -t ${MYP_RP_IMAGE_NAME}:${MYP_RP_IMAGE_TAG} -f $PWD/Dockerfile $PWD --output type=docker,dest=docker/${MYP_RP_IMAGE_NAME}_${MYP_RP_IMAGE_TAG}.tar
# Check if the build was successful # Check if the build was successful
if [ $? -ne 0 ]; then if [ $? -ne 0 ]; then
echo "Error occurred while building the Docker image" echo "Error occurred while building the myp-rp Docker image"
docker buildx rm $BUILDER_NAME docker buildx rm $BUILDER_NAME
exit 1 exit 1
fi fi
echo "Docker image built successfully" echo "myp-rp Docker image built successfully"
# Compress the tar file using xz # Compress the myp-rp tar file using xz
COMPRESSED_FILE="docker/${IMAGE_NAME}_${IMAGE_TAG}.tar.xz" MYP_RP_COMPRESSED_FILE="docker/${MYP_RP_IMAGE_NAME}_${MYP_RP_IMAGE_TAG}.tar.xz"
echo "Compressing the image to $COMPRESSED_FILE..." echo "Compressing the myp-rp image to $MYP_RP_COMPRESSED_FILE..."
# Check if the compressed file exists and remove it # Check if the compressed file exists and remove it
if [ -f "$COMPRESSED_FILE" ]; then if [ -f "$MYP_RP_COMPRESSED_FILE" ]; then
echo "Removing existing compressed file $COMPRESSED_FILE..." echo "Removing existing compressed file $MYP_RP_COMPRESSED_FILE..."
rm "$COMPRESSED_FILE" rm "$MYP_RP_COMPRESSED_FILE"
fi fi
# Proceed with compression # Proceed with compression for myp-rp
xz -z docker/${IMAGE_NAME}_${IMAGE_TAG}.tar xz -z docker/${MYP_RP_IMAGE_NAME}_${MYP_RP_IMAGE_TAG}.tar
# Check if the compression was successful # Check if the compression was successful
if [ $? -ne 0 ]; then if [ $? -ne 0 ]; then
echo "Error occurred while compressing the Docker image" echo "Error occurred while compressing the myp-rp Docker image"
docker buildx rm $BUILDER_NAME docker buildx rm $BUILDER_NAME
exit 1 exit 1
fi fi
echo "Docker image compressed successfully as docker/${IMAGE_NAME}_${IMAGE_TAG}.tar.xz" echo "myp-rp Docker image compressed successfully as $MYP_RP_COMPRESSED_FILE"
# Save the caddy Docker image
echo "Saving caddy Docker image..."
docker pull ${CADDY_IMAGE_NAME}:${CADDY_IMAGE_TAG}
docker save ${CADDY_IMAGE_NAME}:${CADDY_IMAGE_TAG} > docker/${CADDY_IMAGE_NAME}.tar
# Compress the caddy tar file using xz
CADDY_COMPRESSED_FILE="docker/${CADDY_IMAGE_NAME}.tar.xz"
echo "Compressing the caddy image to $CADDY_COMPRESSED_FILE..."
# Check if the compressed file exists and remove it
if [ -f "$CADDY_COMPRESSED_FILE" ]; then
echo "Removing existing compressed file $CADDY_COMPRESSED_FILE..."
rm "$CADDY_COMPRESSED_FILE"
fi
# Proceed with compression for caddy
xz -z docker/${CADDY_IMAGE_NAME}.tar
# Check if the compression was successful
if [ $? -ne 0 ]; then
echo "Error occurred while compressing the caddy Docker image"
docker buildx rm $BUILDER_NAME
exit 1
fi
echo "Caddy Docker image compressed successfully as $CADDY_COMPRESSED_FILE"
# Remove the builder instance # Remove the builder instance
docker buildx rm $BUILDER_NAME docker buildx rm $BUILDER_NAME
echo "Build process completed" echo "Build process completed"

Binary file not shown.

View File

@ -1,6 +1,6 @@
services: services:
caddy: caddy:
image: caddy image: caddy:latest
container_name: caddy container_name: caddy
restart: unless-stopped restart: unless-stopped
ports: ports:

View File

@ -1,12 +1,25 @@
#!/bin/bash #!/bin/bash
# Load the Docker image from the tar file # Load the Docker images from the tar files
echo "Loading Docker image from docker/myp-rp_latest.tar.xz..." echo "Loading Docker images from tar files..."
# Load myp-rp image
echo "Loading myp-rp image..."
docker load -i "docker/myp-rp_latest.tar.xz" docker load -i "docker/myp-rp_latest.tar.xz"
# Check if loading the image was successful # Check if loading the myp-rp image was successful
if [ $? -ne 0 ]; then if [ $? -ne 0 ]; then
echo "Error occurred while loading Docker image" echo "Error occurred while loading myp-rp Docker image"
exit 1
fi
# Load caddy image
echo "Loading caddy image..."
docker load -i "docker/caddy.tar.xz"
# Check if loading the caddy image was successful
if [ $? -ne 0 ]; then
echo "Error occurred while loading caddy Docker image"
exit 1 exit 1
fi fi

Binary file not shown.