1 Commits

Author SHA1 Message Date
3wc
4a131be82e Attempt at updating to latest 2022-10-18 17:27:02 -04:00
6 changed files with 35 additions and 37 deletions

View File

@ -3,12 +3,10 @@ kind: pipeline
name: deploy to swarm-test.autonomic.zone
steps:
- name: deployment
image: git.coopcloud.tech/coop-cloud/stack-ssh-deploy:latest
image: decentral1se/stack-ssh-deploy:latest
settings:
host: swarm-test.autonomic.zone
stack: calendso
networks:
- proxy
purge: true
deploy_key:
from_secret: drone_ssh_swarm_test
@ -35,17 +33,24 @@ trigger:
---
kind: pipeline
name: generate recipe catalogue
name: recipe release
steps:
- name: release a new version
image: decentral1se/drone-abra:latest
settings:
command: recipe calendso release
deploy_key:
from_secret: abra_bot_deploy_key
- name: trigger downstream builds
image: plugins/downstream
settings:
server: https://build.coopcloud.tech
server: https://drone.autonomic.zone
token:
from_secret: drone_abra-bot_token
from_secret: decentral1se_token
fork: true
repositories:
- coop-cloud/auto-recipes-catalogue-json
trigger:
event: tag
- coop-cloud/auto-apps-json
depends_on:
- release a new version
version

View File

@ -1,14 +1,15 @@
TYPE=cal
TYPE=calendso
DOMAIN=cal.example.com
DOMAIN=calendso.example.com
## Domain aliases
#EXTRA_DOMAINS=', `www.calendso.example.com`'
LETS_ENCRYPT_ENV=production
SECRET_DB_PASSWORD_VERSION=v1
SECRET_NEXTAUTH_SECRET_VERSION=v1
SECRET_CALENDSO_ENCRYPTION_KEY_VERSION=v1
## Uncomment this to enable collection of anonymous usage data
#NEXT_PUBLIC_TELEMETRY_KEY=js.2pvs2bbpqq1zxna97wcml.oi2jzirnbj1ev4tc57c5r
# This is here so later lines can extend it; you likely don't wanna edit
COMPOSE_FILE="compose.yml"

View File

@ -21,9 +21,9 @@ The open-source Calendly alternative.
2. Deploy [`coop-cloud/traefik`]
3. `abra app new ${REPO_NAME} --secrets` (optionally with `--pass` if you'd like
to save secrets in `pass`)
4. `abra app config YOURAPPDOMAIN` - be sure to change `$DOMAIN` to something that resolves to
4. `abra app YOURAPPDOMAIN config` - be sure to change `$DOMAIN` to something that resolves to
your Docker swarm box
5. `abra app deploy YOURAPPDOMAIN`
5. `abra app YOURAPPDOMAIN deploy`
6. Open the configured domain in your browser to finish set-up
[`abra`]: https://git.coopcloud.tech/coop-cloud/abra

View File

@ -1 +1 @@
export ENTRYPOINT_CONF_VERSION=v8
export ENTRYPOINT_CONF_VERSION=v9

View File

@ -3,29 +3,28 @@ version: "3.8"
services:
app:
image: calcom.docker.scarf.sh/calcom/cal.com:v3.1.4
image: 3wordchant/calendso:latest
networks:
- proxy
- backend
secrets:
- db_password
- nextauth_secret
- calendso_encryption_key
environment:
- POSTGRES_USER=calendso
- POSTGRES_PASSWORD_FILE=/run/secrets/db_password
- POSTGRES_DB=calendso
- POSTGRES_HOST=db
- CALCOM_TELEMETRY_DISABLED=1
- "NEXT_PUBLIC_WEBAPP_URL=https://${DOMAIN}"
- NEXTAUTH_SECRET_FILE=/run/secrets/nextauth_secret
- CALENDSO_ENCRYPTION_KEY_FILE=/run/secrets/calendso_encryption_key
- "BASE_URL=${DOMAIN}"
- "NEXT_PUBLIC_APP_URL=${DOMAIN}"
- "NEXTAUTH_URL=${DOMAIN}"
- NEXT_PUBLIC_TELEMETRY_KEY
- MS_GRAPH_CLIENT_ID
- ZOOM_CLIENT_ID
- EMAIL_FROM
- EMAIL_SERVER_HOST
- EMAIL_SERVER_PORT
- EMAIL_SERVER_USER
- NODE_TLS_REJECT_UNAUTHORIZED=0
configs:
- source: entrypoint_conf
target: /docker-entrypoint.sh
@ -47,7 +46,6 @@ services:
- "traefik.http.routers.${STACK_NAME}.entrypoints=web-secure"
- "traefik.http.routers.${STACK_NAME}.tls.certresolver=${LETS_ENCRYPT_ENV}"
- "traefik.http.routers.${STACK_NAME}.service=${STACK_NAME}"
- "coop-cloud.${STACK_NAME}.version=0.2.0+v3.1.4"
## Redirect from EXTRA_DOMAINS to DOMAIN
#- "traefik.http.routers.${STACK_NAME}.middlewares=${STACK_NAME}-redirect"
#- "traefik.http.middlewares.${STACK_NAME}-redirect.headers.SSLForceHost=true"
@ -86,12 +84,6 @@ secrets:
db_password:
external: true
name: ${STACK_NAME}_db_password_${SECRET_DB_PASSWORD_VERSION}
nextauth_secret:
external: true
name: ${STACK_NAME}_nextauth_secret_${SECRET_NEXTAUTH_SECRET_VERSION}
calendso_encryption_key:
external: true
name: ${STACK_NAME}_calendso_encryption_key_${SECRET_CALENDSO_ENCRYPTION_KEY_VERSION}
configs:
entrypoint_conf:

View File

@ -30,8 +30,6 @@ load_vars() {
file_env "GOOGLE_API_CREDENTIALS"
file_env "ZOOM_CLIENT_SECRET"
file_env "EMAIL_SERVER_PASSWORD"
file_env "NEXTAUTH_SECRET"
file_env "CALENDSO_ENCRYPTION_KEY"
export "DATABASE_URL=postgresql://$POSTGRES_USER:$POSTGRES_PASSWORD@$POSTGRES_HOST:5432/$POSTGRES_DB"
}
@ -40,10 +38,12 @@ main() {
set -eu
load_vars
if [ ! "${1-}" = "-e" ]; then
# 3wc: upstream CMD
# https://github.com/calendso/docker/blob/main/Dockerfile
/app/scripts/start.sh
fi
}
main
# 3wc: upstream CMD
# https://github.com/calendso/docker/blob/main/Dockerfile
/calcom/scripts/start.sh