Version v3.1.0-buster; sync labels

This commit is contained in:
3wc 2021-05-30 15:01:30 +02:00
parent 0ecad39e7f
commit cc8a4a1c57
2 changed files with 11 additions and 10 deletions

View File

@ -8,7 +8,7 @@ An ActivityPub-federated video streaming platform using P2P directly in your web
- **Category**: Applications - **Category**: Applications
- **Status**: ❷💛 - **Status**: ❷💛
- **Image**: [`chocobozzz/peertube`](https://hub.docker.com/r/chocobozzz/peertube) - **Image**: [`chocobozzz/peertube`](https://hub.docker.com/r/chocobozzz/peertube), ❷💛, official
- **Healthcheck**: ❶💚 - **Healthcheck**: ❶💚
- **Backups**: ❸🍎 - **Backups**: ❸🍎
- **Email**: ❶💚 - **Email**: ❶💚

View File

@ -1,6 +1,4 @@
---
version: "3.8" version: "3.8"
services: services:
web: web:
image: nginx:1.20.0 image: nginx:1.20.0
@ -33,7 +31,7 @@ services:
- "traefik.http.routers.${STACK_NAME}.rule=Host(`${DOMAIN}`)" - "traefik.http.routers.${STACK_NAME}.rule=Host(`${DOMAIN}`)"
- "traefik.http.routers.${STACK_NAME}.entrypoints=web-secure" - "traefik.http.routers.${STACK_NAME}.entrypoints=web-secure"
- "traefik.http.routers.${STACK_NAME}.tls.certresolver=${LETS_ENCRYPT_ENV}" - "traefik.http.routers.${STACK_NAME}.tls.certresolver=${LETS_ENCRYPT_ENV}"
- coop-cloud.${STACK_NAME}.web.version=1.20.0-ea4560b8
app: app:
image: chocobozzz/peertube:v3.1.0-buster image: chocobozzz/peertube:v3.1.0-buster
environment: environment:
@ -63,7 +61,9 @@ services:
entrypoint: /docker-entrypoint.sh entrypoint: /docker-entrypoint.sh
networks: networks:
- internal - internal
deploy:
labels:
- coop-cloud.${STACK_NAME}.app.version=v3.1.0-buster-455af623
db: db:
image: postgres:10-alpine image: postgres:10-alpine
environment: environment:
@ -76,19 +76,22 @@ services:
- postgres-data:/var/lib/postgresql/data - postgres-data:/var/lib/postgresql/data
networks: networks:
- internal - internal
deploy:
labels:
- coop-cloud.${STACK_NAME}.db.version=10-alpine-f2d229fd
cache: cache:
image: redis:4-alpine image: redis:4-alpine
volumes: volumes:
- redis-data:/data - redis-data:/data
networks: networks:
- internal - internal
deploy:
labels:
- coop-cloud.${STACK_NAME}.cache.version=4-alpine-aaf7c123
networks: networks:
internal: internal:
proxy: proxy:
external: true external: true
volumes: volumes:
app-data: app-data:
app-config: app-config:
@ -97,7 +100,6 @@ volumes:
nginx-cache: nginx-cache:
postgres-data: postgres-data:
redis-data: redis-data:
configs: configs:
nginx_config: nginx_config:
name: ${STACK_NAME}_nginx_config_${NGINX_CONFIG_VERSION} name: ${STACK_NAME}_nginx_config_${NGINX_CONFIG_VERSION}
@ -106,7 +108,6 @@ configs:
app_entrypoint: app_entrypoint:
name: ${STACK_NAME}_app_entrypoint_${APP_ENTRYPOINT_VERSION} name: ${STACK_NAME}_app_entrypoint_${APP_ENTRYPOINT_VERSION}
file: entrypoint.sh file: entrypoint.sh
secrets: secrets:
db_password: db_password:
external: true external: true