diff --git a/nextcloud/Dockerfile b/nextcloud/Dockerfile new file mode 100644 index 0000000..cb00823 --- /dev/null +++ b/nextcloud/Dockerfile @@ -0,0 +1,7 @@ +FROM nextcloud:28 + +RUN set -ex; \ +\ +apt-get update; \ +apt-get install -y --no-install-recommends \ +ffmpeg \ diff --git a/nextcloud/docker-compose.yml b/nextcloud/docker-compose.yml index 17ed82c..c7c97c0 100644 --- a/nextcloud/docker-compose.yml +++ b/nextcloud/docker-compose.yml @@ -8,7 +8,9 @@ services: env_file: live.env image: mariadb:10.11 container_name: nextcloud-db - command: --transaction-isolation=READ-COMMITTED --log-bin=ROW + command: + --transaction-isolation=READ-COMMITTED --log-bin=ROW + --log_bin_trust_function_creators=true labels: - "com.centurylinklabs.watchtower.enable=true" networks: @@ -50,7 +52,9 @@ services: extra_hosts: - "${NEXTCLOUD_FQDN}:${TRAEFIK_CONTAINER_IP}" - "${COLLABORA_FQDN}:${TRAEFIK_CONTAINER_IP}" - image: nextcloud:28 + build: + context: ./ + dockerfile: Dockerfile labels: # Watchtower - "com.centurylinklabs.watchtower.enable=true"