Переименование python-пакета nextcloud.talk.recording в f7cloud.talk.recording

This commit is contained in:
root
2026-03-11 11:32:08 +00:00
parent cd2a175063
commit 3d8e128b75
26 changed files with 52 additions and 52 deletions
@@ -11,7 +11,7 @@ RUN apt-get --assume-yes upgrade
# Common dependencies
RUN apt-get --assume-yes install software-properties-common
# nextcloud-talk-recording dependencies
# f7cloud.talk.recording dependencies
RUN apt-get --assume-yes install ffmpeg pulseaudio python3-pip xvfb
RUN pip3 install --upgrade requests
@@ -30,10 +30,10 @@ RUN apt-get --assume-yes install chromium
COPY ./docker-compose/wrap_chromium_binary /opt/bin/wrap_chromium_binary
RUN /opt/bin/wrap_chromium_binary
# nextcloud-talk-recording config
# f7cloud.talk.recording config
RUN useradd --create-home recording
COPY server.conf.in /etc/nextcloud-talk-recording/server.conf
RUN sed --in-place 's/#listen =.*/listen = 0.0.0.0:8000/' /etc/nextcloud-talk-recording/server.conf
COPY server.conf.in /etc/f7cloud.talk.recording/server.conf
RUN sed --in-place 's/#listen =.*/listen = 0.0.0.0:8000/' /etc/f7cloud.talk.recording/server.conf
# Deploy recording server
RUN mkdir --parents /tmp/recording
@@ -48,4 +48,4 @@ RUN rm --recursive --force /tmp/recording
# Switch user and start the recording server
WORKDIR "/home/recording/"
USER "recording"
CMD ["python3", "-m", "nextcloud.talk.recording", "--config", "/etc/nextcloud-talk-recording/server.conf"]
CMD ["python3", "-m", "f7cloud.talk.recording", "--config", "/etc/f7cloud.talk.recording/server.conf"]