Compare commits

..

6 Commits

Author SHA1 Message Date
aa7ee059f8 Use Dockerfile for nextcloud to install ffmpeg for Momories nextcloud app 2025-01-04 13:43:51 +00:00
fb73b1a96e Update valheim docker-compose.yml 2025-01-04 13:42:00 +00:00
29713c9680 Update nextcloud docker-compose.yaml with:
- Update network settings
- Set file permissions on start for better migration
- some clean up
2024-04-28 11:26:02 +00:00
2faad67b5c Update docker-compose files for new docker compose cli usage 2024-04-28 11:25:43 +00:00
80478083d7 Update docker-compose files for new docker compose cli usage 2024-04-28 11:24:42 +00:00
a7d42662db update .gitignore 2024-04-28 11:23:18 +00:00
10 changed files with 38 additions and 35 deletions

3
.gitignore vendored
View File

@ -13,3 +13,6 @@ loolwsd.xml
**/html/ **/html/
**/volumes/ **/volumes/
**/config/ **/config/
# tar files
*.tar

View File

@ -1,9 +1,7 @@
version: '3.5'
networks: networks:
default: default:
external: name: traefik_default
name: traefik_default external: true
services: services:
firefly-app: firefly-app:

View File

@ -1,9 +1,7 @@
version: '3.5'
networks: networks:
default: default:
external: name: traefik_default
name: traefik_default external: true
services: services:
gitea-db: gitea-db:

View File

@ -1,9 +1,7 @@
version: '3.5'
networks: networks:
default: default:
external: name: traefik_default
name: traefik_default external: true
services: services:
grocy-frontend: grocy-frontend:

7
nextcloud/Dockerfile Normal file
View File

@ -0,0 +1,7 @@
FROM nextcloud:28
RUN set -ex; \
\
apt-get update; \
apt-get install -y --no-install-recommends \
ffmpeg \

View File

@ -1,16 +1,16 @@
version: '3.5'
networks: networks:
default: default:
external: name: traefik_default
name: traefik_default external: true
services: services:
nextcloud-db: nextcloud-db:
env_file: live.env env_file: live.env
image: mariadb:10.11 image: mariadb:10.11
container_name: nextcloud-db 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: labels:
- "com.centurylinklabs.watchtower.enable=true" - "com.centurylinklabs.watchtower.enable=true"
networks: networks:
@ -43,13 +43,18 @@ services:
- nextcloud-db - nextcloud-db
- nextcloud-redis - nextcloud-redis
container_name: nextcloud-app container_name: nextcloud-app
command: >
bash -c 'chown -R www-data:www-data ${NEXTCLOUD_DATA_DIR} && chown -R www-data:www-data /var/www/html && chmod 755 ${NEXTCLOUD_DATA_DIR}/.ocdata && /entrypoint.sh apache2-foreground'
env_file: live.env env_file: live.env
environment: environment:
- NEXTCLOUD_TRUSTED_DOMAINS='${NEXTCLOUD_FQDN}' - NEXTCLOUD_TRUSTED_DOMAINS='${NEXTCLOUD_FQDN}'
- NEXTCLOUD_DATA_DIR='${NEXTCLOUD_DATA_DIR}'
extra_hosts: extra_hosts:
- "${NEXTCLOUD_FQDN}:${TRAEFIK_CONTAINER_IP}" - "${NEXTCLOUD_FQDN}:${TRAEFIK_CONTAINER_IP}"
- "${COLLABORA_FQDN}:${TRAEFIK_CONTAINER_IP}" - "${COLLABORA_FQDN}:${TRAEFIK_CONTAINER_IP}"
image: nextcloud:28 build:
context: ./
dockerfile: Dockerfile
labels: labels:
# Watchtower # Watchtower
- "com.centurylinklabs.watchtower.enable=true" - "com.centurylinklabs.watchtower.enable=true"
@ -77,17 +82,19 @@ services:
restart: unless-stopped restart: unless-stopped
volumes: volumes:
- ${NEXTCLOUD_ROOT}/html:/var/www/html - ${NEXTCLOUD_ROOT}/html:/var/www/html
- ${NEXTCLOUD_ROOT}/data:/srv/nextcloud/data - ${NEXTCLOUD_ROOT}/data:${NEXTCLOUD_DATA_DIR}
nextcloud-cron: nextcloud-cron:
image: nextcloud:28 image: nextcloud:28
container_name: nextcloud-cron container_name: nextcloud-cron
command: >
bash -c 'chown -R www-data:www-data ${NEXTCLOUD_DATA_DIR} && chown -R www-data:www-data /var/www/html && chmod 755 ${NEXTCLOUD_DATA_DIR}/.ocdata && /entrypoint.sh apache2-foreground'
labels: labels:
- "com.centurylinklabs.watchtower.enable=true" - "com.centurylinklabs.watchtower.enable=true"
restart: unless-stopped restart: unless-stopped
volumes: volumes:
- ${NEXTCLOUD_ROOT}/html:/var/www/html - ${NEXTCLOUD_ROOT}/html:/var/www/html
- ${NEXTCLOUD_ROOT}/data:/srv/nextcloud/data - ${NEXTCLOUD_ROOT}/data:${NEXTCLOUD_DATA_DIR}
entrypoint: /cron.sh entrypoint: /cron.sh
depends_on: depends_on:
- nextcloud-db - nextcloud-db

View File

@ -1,9 +1,7 @@
version: '3.5'
networks: networks:
default: default:
external: name: traefik_default
name: traefik_default external: true
services: services:
osp-app: osp-app:

View File

@ -1,9 +1,7 @@
version: '3.5'
networks: networks:
default: default:
external: name: traefik_default
name: traefik_default external: true
services: services:
teamspeak-app: teamspeak-app:

View File

@ -1,8 +1,6 @@
version: "3"
services: services:
valheim: valheim:
image: ghcr.io/lloesche/valheim-server image: lloesche/valheim-server:latest
cap_add: cap_add:
- sys_nice - sys_nice
volumes: volumes:

View File

@ -1,9 +1,7 @@
version: '3.5'
networks: networks:
default: default:
external: name: traefik_default
name: traefik_default external: true
services: services:
wordpress: wordpress: