1
0
mirror of https://github.com/nextcloud/docker.git synced 2026-04-05 05:41:47 +02:00
Signed-off-by: J0WI <J0WI@users.noreply.github.com>
This commit is contained in:
J0WI 2026-03-04 23:26:07 +00:00 committed by GitHub
parent 569d1a501f
commit 803d941dcb
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
10 changed files with 31 additions and 21 deletions

View File

@ -1,3 +1,4 @@
---
services:
# Note: MariaDB is an external service. You can find more information about the configuration here:
# https://hub.docker.com/_/mariadb

View File

@ -1,3 +1,4 @@
---
services:
# Note: MariaDB is an external service. You can find more information about the configuration here:
# https://hub.docker.com/_/mariadb
@ -45,7 +46,7 @@ services:
- 127.0.0.1:8080:80
volumes:
# https://docs.nextcloud.com/server/latest/admin_manual/installation/nginx.html
- ./web/nginx.conf:/etc/nginx/nginx.conf:ro
- ./web/nginx.conf:/etc/nginx/nginx.conf:ro
# NOTE: The `volumes` included below should match those of the `app` container (unless you know what you're doing)
- nextcloud:/var/www/html:z,ro
depends_on:

View File

@ -1,3 +1,4 @@
---
services:
# Note: PostgreSQL is an external service. You can find more information about the configuration here:
# https://hub.docker.com/_/postgres

View File

@ -1,3 +1,4 @@
---
services:
# Note: PostgreSQL is an external service. You can find more information about the configuration here:
# https://hub.docker.com/_/postgres
@ -40,7 +41,7 @@ services:
- 127.0.0.1:8080:80
volumes:
# https://docs.nextcloud.com/server/latest/admin_manual/installation/nginx.html
- ./web/nginx.conf:/etc/nginx/nginx.conf:ro
- ./web/nginx.conf:/etc/nginx/nginx.conf:ro
# NOTE: The `volumes` included below should match those of the `app` container (unless you know what you're doing)
- nextcloud:/var/www/html:z,ro
depends_on:

View File

@ -1,3 +1,4 @@
---
services:
# Note: MariaDB is an external service. You can find more information about the configuration here:
# https://hub.docker.com/_/mariadb

View File

@ -1,3 +1,4 @@
---
services:
# Note: MariaDB is an external service. You can find more information about the configuration here:
# https://hub.docker.com/_/mariadb
@ -44,7 +45,7 @@ services:
restart: always
volumes:
# https://docs.nextcloud.com/server/latest/admin_manual/installation/nginx.html
- ./web/nginx.conf:/etc/nginx/nginx.conf:ro
- ./web/nginx.conf:/etc/nginx/nginx.conf:ro
# NOTE: The `volumes` included below should match those of the `app` container (unless you know what you're doing)
- nextcloud:/var/www/html:z,ro
environment:
@ -105,7 +106,7 @@ services:
depends_on:
- proxy
# self signed, outdated.
# self signed, outdated.
# omgwtfssl:
# image: paulczar/omgwtfssl
# restart: "no"

View File

@ -1,3 +1,4 @@
---
services:
# Note: PostgreSQL is an external service. You can find more information about the configuration here:
# https://hub.docker.com/_/postgres

View File

@ -1,3 +1,4 @@
---
services:
# Note: PostgreSQL is an external service. You can find more information about the configuration here:
# https://hub.docker.com/_/postgres

View File

@ -1,3 +1,4 @@
---
name: Images
on:
@ -5,7 +6,7 @@ on:
workflow_run:
workflows: ["update.sh"]
branches: [master]
types:
types:
- completed
defaults:

View File

@ -1,11 +1,12 @@
---
name: update.sh
on:
push:
branches:
- master
- master
schedule:
- cron: '15 18 * * *'
- cron: '15 18 * * *'
workflow_dispatch:
jobs:
@ -13,17 +14,17 @@ jobs:
name: Run update.sh script
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Run update.sh script
run: ./update.sh
- name: Commit files
run: |
git config --local user.email "workflow@github.com"
git config --local user.name "GitHub Workflow"
git add -A
git commit -m "Runs update.sh" || echo "Nothing to update"
- name: Push changes
uses: ad-m/github-push-action@master
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
force: true
- uses: actions/checkout@v4
- name: Run update.sh script
run: ./update.sh
- name: Commit files
run: |
git config --local user.email "workflow@github.com"
git config --local user.name "GitHub Workflow"
git add -A
git commit -m "Runs update.sh" || echo "Nothing to update"
- name: Push changes
uses: ad-m/github-push-action@master
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
force: true