mirror of
https://github.com/nextcloud/docker.git
synced 2026-04-05 05:41:47 +02:00
parent
569d1a501f
commit
803d941dcb
@ -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
|
||||
|
||||
@ -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:
|
||||
|
||||
@ -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
|
||||
|
||||
@ -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:
|
||||
|
||||
@ -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
|
||||
|
||||
@ -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"
|
||||
|
||||
@ -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
|
||||
|
||||
@ -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
|
||||
|
||||
3
.github/workflows/images.yml
vendored
3
.github/workflows/images.yml
vendored
@ -1,3 +1,4 @@
|
||||
---
|
||||
name: Images
|
||||
|
||||
on:
|
||||
@ -5,7 +6,7 @@ on:
|
||||
workflow_run:
|
||||
workflows: ["update.sh"]
|
||||
branches: [master]
|
||||
types:
|
||||
types:
|
||||
- completed
|
||||
|
||||
defaults:
|
||||
|
||||
33
.github/workflows/update-sh.yml
vendored
33
.github/workflows/update-sh.yml
vendored
@ -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
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user