Renovate Bot
ed10c86ca1
This PR contains the following updates: | Package | Update | Change | |---|---|---| | nextcloud | pinDigest | -> `0d231d5` | | registry.mgrote.net/httpd | pinDigest | -> `4e99b75` | | [traefik](https://github.com/containous/traefik) | pinDigest | -> `81a73de` | --- ### Configuration 📅 **Schedule**: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined). 🚦 **Automerge**: Disabled by config. Please merge this manually once you are satisfied. ♻ **Rebasing**: Whenever PR is behind base branch, or you tick the rebase/retry checkbox. 👻 **Immortal**: This PR will be recreated if closed unmerged. Get [config help](https://github.com/renovatebot/renovate/discussions) if that's undesired. --- - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check this box --- This PR has been generated by [Renovate Bot](https://github.com/renovatebot/renovate). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzNy4xNjguMiIsInVwZGF0ZWRJblZlciI6IjM3LjE2OC4yIiwidGFyZ2V0QnJhbmNoIjoibWFzdGVyIn0=--> Reviewed-on: #738 Co-authored-by: Renovate Bot <renovate@mgrote.net> Co-committed-by: Renovate Bot <renovate@mgrote.net>
39 lines
1.2 KiB
Django/Jinja
39 lines
1.2 KiB
Django/Jinja
version: '3'
|
|
services:
|
|
httpd-registry:
|
|
container_name: "httpd-registry"
|
|
image: "registry.mgrote.net/httpd:master@sha256:4e99b75f28d06cc2fde76b9679119c7a757a2a80176ce5987898cc7f421f48f8"
|
|
restart: always
|
|
volumes:
|
|
- uploads:/usr/local/apache2/htdocs/
|
|
- "{{ compose_dest_basedir }}/httpd/httpd.conf:/usr/local/apache2/conf/httpd.conf:ro"
|
|
ports:
|
|
- 3344:80
|
|
labels:
|
|
com.centurylinklabs.watchtower.enable: true
|
|
healthcheck:
|
|
test: ["CMD", "wget", "--quiet", "--tries=1", "--spider", "http://localhost/"]
|
|
interval: 30s
|
|
timeout: 10s
|
|
retries: 3
|
|
|
|
python-api-server:
|
|
container_name: httpd-api
|
|
image: "registry.mgrote.net/python-api-server:latest@sha256:8a43f0e0c5a779fa08e50a5197916f54ca72dbed5bf07273f075900030c5703a"
|
|
restart: always
|
|
ports:
|
|
- "5040:5000"
|
|
volumes:
|
|
- uploads:/uploads
|
|
environment:
|
|
# FLASK_DEBUG: 1 # for debugging
|
|
# FLASK_APP: app # for debugging
|
|
MAX_CONTENT_LENGTH: 500
|
|
UPLOAD_DIRECTORY: /uploads
|
|
AUTH_TOKEN: "{{ lookup('keepass', 'httpd-api-server-token', 'password') }}"
|
|
ENABLE_WEBSERVER: false
|
|
labels:
|
|
com.centurylinklabs.watchtower.enable: true
|
|
|
|
volumes:
|
|
uploads:
|