P
P
Prosecutorr2021-05-08 09:08:34
Docker
Prosecutorr, 2021-05-08 09:08:34

How to use entrypoint/cmd in docker?

So I have an image in docker => https://hub.docker.com/r/linuxserver/deluge

It uses a non updated version of libtorrent so I found another docker image => https://hub.docker.com/ r/emmercm/libtorrent

Where is the correct version located, the question is how to use it in the current docker image? I have no idea how to tie them together.

Answer the question

In order to leave comments, you need to log in

1 answer(s)
K
Konstantin, 2021-05-08
@kot999

read the doc about the Dockerfile
make your image based on the existing one and install the necessary libraries into it
pseudocode :

FROM linuxserver/deluge;
RUN apt update && apt install -y my-lib

Didn't find what you were looking for?

Ask your question

Ask a Question

731 491 924 answers to any question