docker

Back Open Paginator
27.12.2025 03:23
clonbg (@clonbg@masto.es)

Actualización automática de contenedores con Ouroboros myblog.clonbg.es/actualizacion #Docker #Seguridad clonbg.es





Show Original Post


27.12.2025 02:28
habr25 (@habr25@zhub.link)

Запуск программ, требующих getrandom() и getentropy(), на ядрах Linux старше 3.17

Всем привет! Потребовалось на старом ядре linux запустить несколько docker-контейнеров, требующих getrandom и/или getentropy. В ядрах Linux старше 3.17 нет этих системных вызовов. Решение применимо не только к docker, но и к запуску программ на старых ядрах вообще.

habr.com/ru/articles/980992/?u

#linux #synology #kernel #docker #ld_preload




Show Original Post


27.12.2025 01:05
jobsfordevelopers (@jobsfordevelopers@mastodon.world)

Motive is hiring Data Scientist II

🔧 #python #aws #azure #docker #gcp #kubernetes #sql
🌎 Bangalore, India
⏰ Full-time
🏢 Motive

Job details jobsfordevelopers.com/jobs/dat
#jobalert #jobsearch #hiring




Show Original Post


26.12.2025 18:52
clonbg (@clonbg@masto.es)

Como ver contenido acestream en Linux myblog.clonbg.es/como-ver-cont #Docker #Media clonbg.es





Show Original Post


26.12.2025 18:37
blablalinux (@blablalinux@mastodon.blablalinux.be)

🚀 PeerTube a besoin d'une petite cure de dégraissage ? 🧹

Marre des fichiers temporaires qui saturent ton disque ? Voici mon nouveau guide pour automatiser le nettoyage et optimiser la RAM de ton instance Docker ! 🛠️💾

👉 wiki.blablalinux.be/fr/mainten

Hop, un petit script et on n'en parle plus ! 😉

#PeerTube #Docker #SelfHosted #BlablaLinux #Linux




Show Original Post


26.12.2025 17:32
habr (@habr@zhub.link)

Запуск программ, требующих getrandom() и getentropy(), на ядрах Linux старше 3.17

Всем привет! Потребовалось на старом ядре linux запустить несколько docker-контейнеров, требующих getrandom и/или getentropy. В ядрах Linux старше 3.17 нет этих системных вызовов. Решение применимо не только к docker, но и к запуску программ на старых ядрах вообще.

habr.com/ru/articles/980992/

#linux #synology #kernel #docker #ld_preload




Show Original Post


26.12.2025 15:20
seancorfield (@seancorfield@tech.lgbt)

@howlingmad Or just use the official #Clojure #Docker image? hub.docker.com/_/clojure/




Show Original Post


26.12.2025 15:01
nick_lenzen (@nick_lenzen@fosstodon.org)

Has anyone deployed “tubearchivist” with Podman (rootless!) Quadlet Files (systemd)?

I always get a 502 error, but there is no error in any log.

#podman #docker #linux #systemd #tubearchivist




Show Original Post


26.12.2025 14:20
mhneifer (@mhneifer@mastodon.social)

I always wanted to try Clojure, but I don’t like the available online editors very much. While their functionality has increased dramatically over the recent years, you need a stable Internet connection to use them and you never really know what happens with the source code you save online on some cloud servers. I prefer offline IDEs. Or at least an offline REPL. Let's build a Docker image for this.

howlingmad.vivaldi.net/2025/12




Show Original Post


26.12.2025 14:10
2025 (@2025@howlingmad.vivaldi.net)

I finally found some time to play with Lisp again. I always wanted to try Clojure, but I don’t like the available online editors very much. While their functionality has increased dramatically over the recent years, you need a stable Internet connection to use them and you never really know what happens with the source code you save online on some cloud servers. I prefer offline IDEs. Or at least an offline REPL.

As Clojure runs on the JVM, this means installing a JRE. Generally, I avoid installing additional software. Most of the time, you can’t un-install cleanly and your OS gets dirty over time. Windows is especially vulnerable to this. Maybe Docker can help here. Let’s give it a try and write a Dockerfile to set-up a Clojure REPL. There are several ready-to-use Docker images for Java available. You can choose your favorite JDK and OS. Have a look at the (deprecated) OpenJDK image to see some examples. Let’s use the Eclipse Temurin JDK 21 with Ubuntu for now. This means that the Dockerfile starts as follows.

FROM eclipse-temurin:21-noble

After you have selected your JDK / OS base image, you might have to install some Clojure dependencies. The eclipse-temurin:21-noble image is based on Ubuntu 24. As I found out, with this combination, one needs to install the rlwrap package to be able to use the Clojure command-line REPL. Therefore, we need to install rlwrap with apt. We can use the RUN instruction to run apt during image build. Let’s add the instruction to the Dockerfile to update apt sources and install rlwrap.

FROM eclipse-temurin:21-nobleRUN apt update && apt install -y rlwrap

After you have installed the Clojure dependencies, you can finally install Clojure itself. As we have a standard Linux base image, we can just use the Linux installation commands given on the Clojure installation website. They curl an install script and then execute the script. We will add RUN instructions for all commands given so the Dockerfile looks as follows now.

FROM eclipse-temurin:21-nobleRUN apt update && apt install -y rlwrapRUN curl -L -O https://github.com/clojure/brew-install/releases/latest/download/linux-install.shRUN chmod +x linux-install.shRUN ./linux-install.sh

Now we have an image with Clojure installed. That’s nice, but what we really want is a ready-to-use REPL. Clojure provides the clj command to start a REPL. We can use the CMD instruction to set the command to be executed when running a container from the build image. After adding the CMD instruction, our Dockerfile is now complete.

FROM eclipse-temurin:21-nobleRUN apt update && apt install -y rlwrapRUN curl -L -O https://github.com/clojure/brew-install/releases/latest/download/linux-install.shRUN chmod +x linux-install.shRUN ./linux-install.shCMD ["clj"]

You have to execute the docker build and docker run commands to build an image from this Dockerfile and then run a container based on the build image. Hopefully I will find enough free time to play around with this container REPL to see how usable this approach is. And maybe write another blog entry about my experience.

https://howlingmad.vivaldi.net/2025/12/26/setting-up-a-clojure-development-environment/

#clojure #docker #lisp




Show Original Post


26.12.2025 11:43
ros (@ros@techhub.social)

Self-Hosting Cognee: Choosing LLM on Ollama:
glukhov.org/post/2025/12/selfh
#SelfHosting #LLM #AI #RAG #Python #Ollama #Hardware #Docker #OpenSource




Show Original Post


26.12.2025 10:57
dstglobal (@dstglobal@mastodon.social)

LLMOps: объяснение принципа работы, основные преимущества и лучшие практики

​В этой статье рассматривается LLMOps, принцип его работы, основные преимущества и лучшие практики для оптимизации операций с большими языковыми моделями с целью повышения эффективности и масштабируемости.

Источник: dstglobal.ru/club/1140-llmops-





Show Original Post


1 ...181 182 183 184 185 186 187 188 189 190 191 ...440
UP