redict/redict-containers
8
8
Fork
You've already forked redict-containers
3

Upgrade to 7.3.0 #7

Merged
ddevault merged 1 commit from WhyNotHugo/redict-containers:rc into main 2024年03月28日 11:48:43 +01:00

The previous unstable tarball is gone, so the container no longer built.
Even if it had built, it would have run Redict in protected mode, which
would make it, in many situations, unreachable.

This change also validates checksums before unpacking tarballs.

I removed the set -eux calls. They are an anti-pattern; docker already
prints commands and exits if any fails. Chained commands are simply
chained with &&. Running all commands in a single RUN directive
makes caching unfeasible when iterating locally.

Also removed several unused dependencies.

You can test with locally with:

docker build -t redict .
docker run --rm -it -p 6379:6379 redict

And in a Python terminal run:

# needs pip install redis
import redis
r = redis.Redis(host='localhost', port=6379, decode_responses=True)
r.set('it-works', 'okay')
print(r.get('it-works'))

Fixes: #6

The previous unstable tarball is gone, so the container no longer built. Even if it had built, it would have run Redict in protected mode, which would make it, in many situations, unreachable. This change also validates checksums before unpacking tarballs. I removed the `set -eux` calls. They are an anti-pattern; docker already prints commands and exits if any fails. Chained commands are simply chained with `&&`. Running all commands in a single `RUN` directive makes caching unfeasible when iterating locally. Also removed several unused dependencies. You can test with locally with: docker build -t redict . docker run --rm -it -p 6379:6379 redict And in a Python terminal run: # needs pip install redis import redis r = redis.Redis(host='localhost', port=6379, decode_responses=True) r.set('it-works', 'okay') print(r.get('it-works')) Fixes: https://codeberg.org/redict/redict-containers/issues/6

Thanks!

Thanks!
Sign in to join this conversation.
No reviewers
Milestone
Clear milestone
No items
No milestone
Projects
Clear projects
No items
No project
Assignees
Clear assignees
No assignees
2 participants
Notifications
Due date
The due date is invalid or out of range. Please use the format "yyyy-mm-dd".

No due date set.

Dependencies

No dependencies set.

Reference
redict/redict-containers!7
Reference in a new issue
redict/redict-containers
No description provided.
Delete branch "WhyNotHugo/redict-containers:rc"

Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?