From db028dfe2740e393ffe7bb39998ef4196c4794a7 Mon Sep 17 00:00:00 2001 From: Anthony Stirling <77850077+Frooodle@users.noreply.github.com.> Date: Sat, 16 Nov 2024 11:31:26 +0000 Subject: [PATCH] docker move --- DeveloperGuide.md | 8 ++++---- exampleYmlFiles/docker-compose-latest-fat-security.yml | 2 +- .../docker-compose-latest-security-with-sso.yml | 2 +- exampleYmlFiles/docker-compose-latest-security.yml | 2 +- .../docker-compose-latest-ultra-lite-security.yml | 2 +- exampleYmlFiles/docker-compose-latest-ultra-lite.yml | 2 +- exampleYmlFiles/docker-compose-latest.yml | 2 +- src/main/resources/templates/fragments/navbar.html | 2 +- test2.sh | 2 +- 9 files changed, 12 insertions(+), 12 deletions(-) diff --git a/DeveloperGuide.md b/DeveloperGuide.md index 23cb6108..d5705fb7 100644 --- a/DeveloperGuide.md +++ b/DeveloperGuide.md @@ -114,7 +114,7 @@ These files provide pre-configured setups for different scenarios. For example, services: stirling-pdf: container_name: Stirling-PDF-Security - image: frooodle/s-pdf:latest + image: stirlingtools/stirling-pdf:latest deploy: resources: limits: @@ -173,20 +173,20 @@ Stirling-PDF uses different Docker images for various configurations. The build For the latest version: ```bash - docker build --no-cache --pull --build-arg VERSION_TAG=alpha -t frooodle/s-pdf:latest -f ./Dockerfile . + docker build --no-cache --pull --build-arg VERSION_TAG=alpha -t stirlingtools/stirling-pdf:latest -f ./Dockerfile . ``` For the ultra-lite version: ```bash - docker build --no-cache --pull --build-arg VERSION_TAG=alpha -t frooodle/s-pdf:latest-ultra-lite -f ./Dockerfile-ultra-lite . + docker build --no-cache --pull --build-arg VERSION_TAG=alpha -t stirlingtools/stirling-pdf:latest-ultra-lite -f ./Dockerfile-ultra-lite . ``` For the fat version (with security enabled): ```bash export DOCKER_ENABLE_SECURITY=true - docker build --no-cache --pull --build-arg VERSION_TAG=alpha -t frooodle/s-pdf:latest-fat -f ./Dockerfile-fat . + docker build --no-cache --pull --build-arg VERSION_TAG=alpha -t stirlingtools/stirling-pdf:latest-fat -f ./Dockerfile-fat . ``` Note: The `--no-cache` and `--pull` flags ensure that the build process uses the latest base images and doesn't use cached layers, which is useful for testing and ensuring reproducible builds. however to improve build times these can often be removed depending on your usecase diff --git a/exampleYmlFiles/docker-compose-latest-fat-security.yml b/exampleYmlFiles/docker-compose-latest-fat-security.yml index 44d5ebef..e46bd0e9 100644 --- a/exampleYmlFiles/docker-compose-latest-fat-security.yml +++ b/exampleYmlFiles/docker-compose-latest-fat-security.yml @@ -1,7 +1,7 @@ services: stirling-pdf: container_name: Stirling-PDF-Security-Fat - image: frooodle/s-pdf:latest-fat + image: stirlingtools/stirling-pdf:latest-fat deploy: resources: limits: diff --git a/exampleYmlFiles/docker-compose-latest-security-with-sso.yml b/exampleYmlFiles/docker-compose-latest-security-with-sso.yml index 7791ae7a..9d30986c 100644 --- a/exampleYmlFiles/docker-compose-latest-security-with-sso.yml +++ b/exampleYmlFiles/docker-compose-latest-security-with-sso.yml @@ -1,7 +1,7 @@ services: stirling-pdf: container_name: Stirling-PDF-Security - image: frooodle/s-pdf:latest + image: stirlingtools/stirling-pdf:latest deploy: resources: limits: diff --git a/exampleYmlFiles/docker-compose-latest-security.yml b/exampleYmlFiles/docker-compose-latest-security.yml index c1e8e712..d29c185d 100644 --- a/exampleYmlFiles/docker-compose-latest-security.yml +++ b/exampleYmlFiles/docker-compose-latest-security.yml @@ -1,7 +1,7 @@ services: stirling-pdf: container_name: Stirling-PDF-Security - image: frooodle/s-pdf:latest + image: stirlingtools/stirling-pdf:latest deploy: resources: limits: diff --git a/exampleYmlFiles/docker-compose-latest-ultra-lite-security.yml b/exampleYmlFiles/docker-compose-latest-ultra-lite-security.yml index d20ed21c..f357e0b9 100644 --- a/exampleYmlFiles/docker-compose-latest-ultra-lite-security.yml +++ b/exampleYmlFiles/docker-compose-latest-ultra-lite-security.yml @@ -1,7 +1,7 @@ services: stirling-pdf: container_name: Stirling-PDF-Ultra-Lite-Security - image: frooodle/s-pdf:latest-ultra-lite + image: stirlingtools/stirling-pdf:latest-ultra-lite deploy: resources: limits: diff --git a/exampleYmlFiles/docker-compose-latest-ultra-lite.yml b/exampleYmlFiles/docker-compose-latest-ultra-lite.yml index 990ba959..53d7bcb8 100644 --- a/exampleYmlFiles/docker-compose-latest-ultra-lite.yml +++ b/exampleYmlFiles/docker-compose-latest-ultra-lite.yml @@ -1,7 +1,7 @@ services: stirling-pdf: container_name: Stirling-PDF-Ultra-Lite - image: frooodle/s-pdf:latest-ultra-lite + image: stirlingtools/stirling-pdf:latest-ultra-lite deploy: resources: limits: diff --git a/exampleYmlFiles/docker-compose-latest.yml b/exampleYmlFiles/docker-compose-latest.yml index cab8c3cd..8419b072 100644 --- a/exampleYmlFiles/docker-compose-latest.yml +++ b/exampleYmlFiles/docker-compose-latest.yml @@ -1,7 +1,7 @@ services: stirling-pdf: container_name: Stirling-PDF - image: frooodle/s-pdf:latest + image: stirlingtools/stirling-pdf:latest deploy: resources: limits: diff --git a/src/main/resources/templates/fragments/navbar.html b/src/main/resources/templates/fragments/navbar.html index 321ec149..9569dc77 100644 --- a/src/main/resources/templates/fragments/navbar.html +++ b/src/main/resources/templates/fragments/navbar.html @@ -411,7 +411,7 @@ th:title="#{visitGithub}"> github - + docker diff --git a/test2.sh b/test2.sh index 84effd12..61db7993 100644 --- a/test2.sh +++ b/test2.sh @@ -49,7 +49,7 @@ check_health() { build_and_test() { local version_tag="alpha" local dockerfile_name="./Dockerfile" - local image_base="frooodle/s-pdf" + local image_base="stirlingtools/stirling-pdf" local security_suffix="" local docker_compose_base="./exampleYmlFiles/docker-compose-latest" local compose_suffix=".yml"