Switching Nextcloud image and tweaking Docker Compose deployment in pipeline.

This commit is contained in:
2025-01-29 14:19:07 -05:00
parent 6e21983d89
commit 3d8bb3f400
2 changed files with 10 additions and 14 deletions
@@ -290,11 +290,12 @@ jobs:
continue-on-error: true continue-on-error: true
uses: keatonLiu/docker-compose-remote-action@v1.2 uses: keatonLiu/docker-compose-remote-action@v1.2
with: with:
docker_compose_file: docker-compose.yml
docker_args: -d --remove-orphans --pull missing --parallel -1
ssh_user: gitea-deploy ssh_user: gitea-deploy
ssh_host: 192.168.1.254 ssh_host: 192.168.1.254
ssh_host_public_key: ${{ secrets.RINOA_GITEA_PUBLIC_SSH_KEY }} ssh_host_public_key: ${{ secrets.RINOA_GITEA_PUBLIC_SSH_KEY }}
ssh_private_key: ${{ secrets.RINOA_GITEA_PRIVATE_SSH_KEY }} ssh_private_key: ${{ secrets.RINOA_GITEA_PRIVATE_SSH_KEY }}
docker_compose_file: docker-compose.yml
- name: Gotify Notification - name: Gotify Notification
uses: eikendev/gotify-action@master uses: eikendev/gotify-action@master
with: with:
+8 -13
View File
@@ -3724,12 +3724,16 @@ services:
required: true required: true
restart: true restart: true
environment: environment:
DOCKER_HOST: tcp://dockerproxy:2375
PGID: ${PGID} PGID: ${PGID}
PUID: ${PUID} PUID: ${PUID}
TZ: ${TZ} TZ: ${TZ}
LOG_LEVEL: debug LOG_LEVEL: debug
hostname: Rinoa SKIP_DOMAIN_VALIDATION: false
image: lscr.io/linuxserver/nextcloud:latest APACHE_ADDITIONAL_NETWORK:
APACHE_IP_BINDING: 0.0.0.0
APACHE_PORT: 11000
image: nextcloud/all-in-one:latest
labels: labels:
homepage.group: Personal Services homepage.group: Personal Services
homepage.name: NextCloud homepage.name: NextCloud
@@ -3750,17 +3754,8 @@ services:
target: 443 target: 443
restart: unless-stopped restart: unless-stopped
volumes: volumes:
- bind: - /etc/localtime:/etc/localtime:ro
create_host_path: true - ${DOCKER_VOLUME_CONFIG}/nextcloud:/config
read_only: true
source: /etc/localtime
target: /etc/localtime
type: bind
- bind:
create_host_path: true
source: ${DOCKER_VOLUME_CONFIG}/nextcloud
target: /config
type: bind
- bind: - bind:
create_host_path: true create_host_path: true
source: /rinoa-storage source: /rinoa-storage