From 06b0d65b417da20931e423e2381d13dd598df3e2 Mon Sep 17 00:00:00 2001 From: Sergio <77530549+sergi0g@users.noreply.github.com> Date: Sat, 2 Nov 2024 11:20:27 +0200 Subject: [PATCH 1/4] idk how to spell --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 0fed217..3fd1433 100644 --- a/README.md +++ b/README.md @@ -4,7 +4,7 @@ Cup is the easiest way to check for container image updates. ![Cup web in dark mode](screenshots/web_dark.png) -_If you like this project and/or use Cup, please consider starring the project ⭐. It motivates me to continue working on it and imrpoving it. Plus, you get updates for new releases!_ +_If you like this project and/or use Cup, please consider starring the project ⭐. It motivates me to continue working on it and improving it. Plus, you get updates for new releases!_ ## Screenshots 📷 From 566b02ca4c1c9121e97320c5fa2acaf06ce21fbe Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 17 Dec 2024 15:49:40 +0200 Subject: [PATCH 2/4] Bump nanoid from 3.3.7 to 3.3.8 in /docs (#49) Bumps [nanoid](https://github.com/ai/nanoid) from 3.3.7 to 3.3.8 due to a security vulnerability. Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- docs/pnpm-lock.yaml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/docs/pnpm-lock.yaml b/docs/pnpm-lock.yaml index bf87d52..f9ce7c1 100644 --- a/docs/pnpm-lock.yaml +++ b/docs/pnpm-lock.yaml @@ -1271,8 +1271,8 @@ packages: mz@2.7.0: resolution: {integrity: sha512-z81GNO7nnYMEhrGh9LeymoE4+Yr0Wn5McHIZMK5cfQCl+NDX08sCZgUc9/6MHni9IWuFLm1Z3HTCXu2z9fN62Q==} - nanoid@3.3.7: - resolution: {integrity: sha512-eSRppjcPIatRIMC1U6UngP8XFcz8MQWGQdt1MTBQ7NaAmvXDfvNxbvWV3x2y6CdEUciCSsDHDQZbhYaB8QEo2g==} + nanoid@3.3.8: + resolution: {integrity: sha512-WNLf5Sd8oZxOm+TzppcYk8gVOgP+l58xNy58D0nbUnOxOWRWvlcCV4kUF7ltmI6PsrLl/BgKEyS4mqsGChFN0w==} engines: {node: ^10 || ^12 || ^13.7 || ^14 || >=15.0.1} hasBin: true @@ -3392,7 +3392,7 @@ snapshots: object-assign: 4.1.1 thenify-all: 1.6.0 - nanoid@3.3.7: {} + nanoid@3.3.8: {} next-mdx-remote@4.4.1(react-dom@18.3.1(react@18.3.1))(react@18.3.1): dependencies: @@ -3605,13 +3605,13 @@ snapshots: postcss@8.4.31: dependencies: - nanoid: 3.3.7 + nanoid: 3.3.8 picocolors: 1.0.1 source-map-js: 1.2.0 postcss@8.4.39: dependencies: - nanoid: 3.3.7 + nanoid: 3.3.8 picocolors: 1.0.1 source-map-js: 1.2.0 From d26f57758aaa604b3d88011d0c5b5005c4a609d0 Mon Sep 17 00:00:00 2001 From: James Bogosian Date: Thu, 26 Dec 2024 09:04:11 -0500 Subject: [PATCH 3/4] Fix typo in docs --- docs/pages/docs/community-resources/docker-compose.mdx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/pages/docs/community-resources/docker-compose.mdx b/docs/pages/docs/community-resources/docker-compose.mdx index 896bcbd..d51e29c 100644 --- a/docs/pages/docs/community-resources/docker-compose.mdx +++ b/docs/pages/docs/community-resources/docker-compose.mdx @@ -1,6 +1,6 @@ # Docker Compose -Many users find it useful to run Cup with Docker Compose, as it enables them to have it constantly running in the background and easily control it. Cup's lightweight resource usae makes it ideal for this use case. +Many users find it useful to run Cup with Docker Compose, as it enables them to have it constantly running in the background and easily control it. Cup's lightweight resource use makes it ideal for this use case. There have been requests for an official Docker Compose file, but I believe you should customize it to your needs. @@ -20,4 +20,4 @@ services: - ./cup.json:/config/cup.json ``` -This can be customized further of course, if you choose to use a different port, another config location, or would like to change something else. Have fun! \ No newline at end of file +This can be customized further of course, if you choose to use a different port, another config location, or would like to change something else. Have fun! From b12acba7454828d374576e0278d71b89a05b047d Mon Sep 17 00:00:00 2001 From: Kamil Essekkat Date: Fri, 10 Jan 2025 15:05:58 +0100 Subject: [PATCH 4/4] Add note about non-root with docker compose to docs (#56) --- docs/pages/docs/community-resources/docker-compose.mdx | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/docs/pages/docs/community-resources/docker-compose.mdx b/docs/pages/docs/community-resources/docker-compose.mdx index d51e29c..d737b25 100644 --- a/docs/pages/docs/community-resources/docker-compose.mdx +++ b/docs/pages/docs/community-resources/docker-compose.mdx @@ -20,4 +20,9 @@ services: - ./cup.json:/config/cup.json ``` +Cup can run with a non-root user, but needs to be in a docker group. Assuming user id of 1000 and `docker` group id of 999 you can add this to the docker compose: +```yaml + user: "1000:999" +``` + This can be customized further of course, if you choose to use a different port, another config location, or would like to change something else. Have fun!