Init docker-hub-rss

This commit is contained in:
decentral1se 2021-03-17 14:00:45 +01:00
parent 02691a3e5c
commit 571c885eb9
No known key found for this signature in database
GPG Key ID: 92DAD76BD9567B8A
3 changed files with 18 additions and 17 deletions

View File

@ -3,14 +3,15 @@
RSS feed for Docker Hub images
<!-- metadata -->
* **Category**:
* **Status**:
* **Image**: [`docker-hub-rss`](https://hub.docker.com/r/docker-hub-rss/docker-hub-rss)
* **Healthcheck**:
* **Backups**:
* **Email**:
* **Tests**:
* **SSO**:
- **Category**:
- **Status**:
- **Image**: [`docker-hub-rss`](https://hub.docker.com/r/theconnman/docker-hub-rss/)
- **Healthcheck**:
- **Backups**:
- **Email**:
- **Tests**:
- **SSO**:
<!-- endmetadata -->
## Basic usage

2
abra.sh Normal file
View File

@ -0,0 +1,2 @@
export ABRA_TYPE_APP_VERSION=0.4.2
export ABRA_TYPE_APP_DIGEST=5f57e6ec

View File

@ -3,24 +3,22 @@ version: "3.8"
services:
app:
image: nginx:1.19.2
image: theconnman/docker-hub-rss:0.4.2
networks:
- proxy
deploy:
restart_policy:
condition: on-failure
update_config:
failure_action: rollback
order: start-first
labels:
- "traefik.enable=true"
- "traefik.http.services.${STACK_NAME}.loadbalancer.server.port=80"
- "traefik.http.services.${STACK_NAME}.loadbalancer.server.port=3000"
- "traefik.http.routers.${STACK_NAME}.rule=Host(`${DOMAIN}`${EXTRA_DOMAINS})"
- "traefik.http.routers.${STACK_NAME}.entrypoints=web-secure"
- "traefik.http.routers.${STACK_NAME}.tls.certresolver=${LETS_ENCRYPT_ENV}"
## Redirect from EXTRA_DOMAINS to DOMAIN
#- "traefik.http.routers.${STACK_NAME}.middlewares=${STACK_NAME}-redirect"
#- "traefik.http.middlewares.${STACK_NAME}-redirect.headers.SSLForceHost=true"
#- "traefik.http.middlewares.${STACK_NAME}-redirect.headers.SSLHost=${DOMAIN}"
- "coop-cloud.${STACK_NAME}.app.version=${ABRA_TYPE_APP_VERSION}-${ABRA_TYPE_APP_DIGEST}"
healthcheck:
test: ["CMD", "curl", "-f", "http://localhost"]
test: ["CMD", "curl", "-f", "http://localhost:3000"]
interval: 30s
timeout: 10s
retries: 10