4 Commits

Author SHA1 Message Date
c1042afa50 Update .drone.yml
Some checks failed
continuous-integration/drone/push Build is failing
2025-01-08 10:09:13 -08:00
8fbe402386 Attempt to fix CI secret generation
Some checks failed
continuous-integration/drone/push Build is failing
2024-03-28 15:08:18 +00:00
00c72d17ed Added catalouge build to .drone
Some checks failed
continuous-integration/drone/push Build is failing
2024-03-28 15:01:43 +00:00
28cbee691e chore: publish 2.0.1+1.19.3 release
Some checks failed
continuous-integration/drone/push Build is failing
2024-03-28 14:04:31 +00:00
2 changed files with 23 additions and 7 deletions

View File

@ -18,8 +18,24 @@ steps:
LETS_ENCRYPT_ENV: production LETS_ENCRYPT_ENV: production
APP_ENTRYPOINT_CONF_VERSION: v1 APP_ENTRYPOINT_CONF_VERSION: v1
BACKEND_ENTRYPOINT_CONF_VERSION: v1 BACKEND_ENTRYPOINT_CONF_VERSION: v1
SECRET_DB_PASSWORD_VERSION: v1 SECRET_PENPOT_DB_PASSWORD_VERSION: v1
SECRET_SMTP_PASSWORD_VERSION: v1 SECRET_SMTP_PASSWORD_VERSION: v1
trigger: trigger:
branch: branch:
- main - main
---
kind: pipeline
name: generate recipe catalogue
steps:
- name: release a new version
image: plugins/downstream
settings:
server: https://build.coopcloud.tech
token:
from_secret: drone_abra-bot_token
fork: true
repositories:
- toolshed/auto-recipes-catalogue-json
trigger:
event: tag

View File

@ -2,7 +2,7 @@ version: "3.8"
services: services:
app: app:
image: "penpotapp/frontend:1.19.1" image: "penpotapp/frontend:1.19.3"
networks: networks:
- proxy - proxy
- internal - internal
@ -28,10 +28,10 @@ services:
- "traefik.http.routers.${STACK_NAME}.middlewares=${STACK_NAME}-redirect" - "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.SSLForceHost=true"
- "traefik.http.middlewares.${STACK_NAME}-redirect.headers.SSLHost=${DOMAIN}" - "traefik.http.middlewares.${STACK_NAME}-redirect.headers.SSLHost=${DOMAIN}"
- "coop-cloud.${STACK_NAME}.version=2.0.0+1.19.1" - "coop-cloud.${STACK_NAME}.version=2.0.1+1.19.3"
penpot-backend: penpot-backend:
image: "penpotapp/backend:1.19.1" image: "penpotapp/backend:1.19.3"
volumes: volumes:
- penpot_assets:/opt/data - penpot_assets:/opt/data
depends_on: depends_on:
@ -72,7 +72,7 @@ services:
- internal - internal
penpot-exporter: penpot-exporter:
image: "penpotapp/exporter:1.19.1" image: "penpotapp/exporter:1.19.3"
environment: environment:
- PENPOT_PUBLIC_URI=http://app - PENPOT_PUBLIC_URI=http://app
- PENPOT_REDIS_URI=redis://penpot-redis/0 - PENPOT_REDIS_URI=redis://penpot-redis/0
@ -80,7 +80,7 @@ services:
- internal - internal
penpot-postgres: penpot-postgres:
image: "postgres:15.4" image: "postgres:16.2"
stop_signal: SIGINT stop_signal: SIGINT
secrets: secrets:
- db_password - db_password
@ -95,7 +95,7 @@ services:
- internal - internal
penpot-redis: penpot-redis:
image: redis:7.2.1 image: redis:7.2.4
networks: networks:
- internal - internal