6 Commits
devel ... main

Author SHA1 Message Date
a0d5c9fc48 chore: publish 0.1 release 2025-02-23 18:14:01 -08:00
900751b77e fix secret error 2025-02-20 06:13:10 -08:00
f660ad5c1c Update .drone.yml
All checks were successful
continuous-integration/drone/push Build is passing
2025-01-08 10:09:12 -08:00
3wc
225569c478 Switch to self-hosted stack-ssh-deploy image [mass update]
All checks were successful
continuous-integration/drone/push Build is passing
2023-01-21 11:49:55 -08:00
3wc
02610fdee9 Add drone configs / secrets [mass update]
All checks were successful
continuous-integration/drone/push Build is passing
2023-01-20 21:32:06 -08:00
3wc
f1f768b424 Add CI and catalogue generation [mass update]
Some checks failed
continuous-integration/drone/push Build is failing
2023-01-20 10:45:03 -08:00
3 changed files with 44 additions and 3 deletions

41
.drone.yml Normal file
View File

@ -0,0 +1,41 @@
---
kind: pipeline
name: deploy to swarm-test.autonomic.zone
steps:
- name: deployment
image: git.coopcloud.tech/coop-cloud/stack-ssh-deploy:latest
settings:
host: swarm-test.autonomic.zone
stack: firefly-iii
generate_secrets: true
purge: true
deploy_key:
from_secret: drone_ssh_swarm_test
networks:
- proxy
environment:
DOMAIN: firefly-iii.swarm-test.autonomic.zone
STACK_NAME: firefly-iii
LETS_ENCRYPT_ENV: production
SECRET_APP_KEY_VERSION: v1
SECRET_STATIC_CRON_TOKEN_VERSION: v1
SECRET_DB_PASSWORD_VERSION: v1
trigger:
branch:
- 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

@ -1,5 +1,5 @@
TYPE=firefly-iii
DOMAIN=example.com
DOMAIN=firefly-iii.example.com
LETS_ENCRYPT_ENV=production
APP_NAME=FireflyIII

View File

@ -2,7 +2,7 @@ version: '3.8'
services:
app:
image: fireflyiii/core:version-5.5.13
image: fireflyiii/core:version-6.2.9
volumes:
- firefly_iii_upload:/var/www/html/storage/upload
secrets:
@ -121,7 +121,7 @@ volumes:
firefly_iii_db:
secrets:
cron_token:
name: ${STACK_NAME}_static_cron_token_${SECRET_STATIC_CRON_TOKEN_VERSION}
name: ${STACK_NAME}_cron_token_${SECRET_STATIC_CRON_TOKEN_VERSION}
external: true
app_key:
name: ${STACK_NAME}_app_key_${SECRET_APP_KEY_VERSION}