- Переименовано Nextcloud на F7cloud - Добавлены зависимости Firefox ESR и Geckodriver - Создан скрипт установки с поддержкой параметров HPB - Добавлена документация и инструкции по установке Co-authored-by: Cursor <cursoragent@cursor.com>
24 lines
694 B
YAML
24 lines
694 B
YAML
# SPDX-FileCopyrightText: 2023 Nextcloud GmbH and Nextcloud contributors
|
|
# SPDX-License-Identifier: AGPL-3.0-or-later
|
|
version: "3.9"
|
|
|
|
services:
|
|
|
|
nextcloud-talk-recording:
|
|
build:
|
|
context: ..
|
|
dockerfile: ./docker-compose/Dockerfile
|
|
init: true
|
|
shm_size: '2gb'
|
|
restart: on-failure
|
|
# By default the recording server is reachable through the network "nextcloud-talk-recording"
|
|
# Depending on your setup (if you need to reach the recording server externally for example) you might need
|
|
# to expose the used ports to the host machine, e.g.:
|
|
#ports:
|
|
# - "8000:8000"
|
|
networks:
|
|
- nextcloud-talk-recording
|
|
|
|
networks:
|
|
nextcloud-talk-recording:
|