Files
shuffle-cracked/backend/go-app
dependabot[bot] 13cac512df build(deps): bump github.com/containerd/containerd in /backend/go-app
Bumps [github.com/containerd/containerd](https://github.com/containerd/containerd) from 1.6.26 to 1.6.38.
- [Release notes](https://github.com/containerd/containerd/releases)
- [Changelog](https://github.com/containerd/containerd/blob/main/RELEASES.md)
- [Commits](https://github.com/containerd/containerd/compare/v1.6.26...v1.6.38)

---
updated-dependencies:
- dependency-name: github.com/containerd/containerd
  dependency-type: indirect
...

Signed-off-by: dependabot[bot] <support@github.com>
2025-03-18 00:19:57 +00:00
..
2025-01-23 17:05:34 +01:00
2025-03-17 18:29:23 +05:30
2025-03-17 18:24:56 +05:30

Run

go run main.go walkoff.go docker.go

Modify

  • Make sure it's connected with the latest version of the shuffle-shared library, which is used to get resources from Shuffle

Database

  • The database is Opensearch and can be modified with the SHUFFLE_OPENSEARCH_URL environment variable. See .env in the root directory for more. This requires Opensearch to be running (typically started from docker-compose.yml)
docker-compose up -d
docker stop shuffle-backend
docker stop shuffle-frontend
docker stop shuffle-orborus

Caching

  • To handle caching, it by default runs it in memory of the application itself. If you want to offload this, it can be done using the SHUFFLE_MEMCACHED environment variable, connecting to a memcached instance.
docker run --name shuffle-cache -p 11211:11211 -d memcached -m 1024