Created
April 30, 2026 14:38
-
-
Save t-book/6431b692b3648b37784c7d90554ed5c2 to your computer and use it in GitHub Desktop.
test.yml
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| services: | |
| nextcloud: | |
| image: nextcloud:30 | |
| ports: | |
| - "8088:80" | |
| environment: | |
| NEXTCLOUD_ADMIN_USER: admin | |
| NEXTCLOUD_ADMIN_PASSWORD: admin | |
| SQLITE_DATABASE: nextcloud | |
| volumes: | |
| - nextcloud_data:/var/www/html | |
| # For comparison: the same WebDAV server QFC uses in CI | |
| webdav: | |
| image: bytemark/webdav:2.4 | |
| ports: | |
| - "8089:80" | |
| environment: | |
| AUTH_TYPE: Basic | |
| USERNAME: qfc_webdav_user | |
| PASSWORD: qfc_webdav_pwd | |
| volumes: | |
| nextcloud_data: |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment