chore: release 0.2.0+v3.5.5-hometown-1.0.8
continuous-integration/drone/push Build is failing Details

This commit is contained in:
knoflook 2023-02-15 16:24:53 +01:00
parent 05f3ac602e
commit 8e761a286d
3 changed files with 7 additions and 12 deletions

View File

@ -1,6 +1,6 @@
#!/bin/bash
export ENTRYPOINT_CONF_VERSION=v5
export ENTRYPOINT_CONF_VERSION=v6
assets() {
export OTP_SECRET=$(cat /run/secrets/otp_secret)

View File

@ -3,7 +3,7 @@ version: "3.8"
services:
app:
image: decentral1se/hometown:v1.0.6_3.5.2
image: decentral1se/hometown:v3.5.5-hometown-1.0.8
command: bash -c "rm -f /mastodon/tmp/pids/server.pid; bundle exec rails s -p 3000"
networks: &bothNetworks
- proxy
@ -19,7 +19,7 @@ services:
- "traefik.http.routers.${STACK_NAME}_web.rule=Host(`${DOMAIN}`)"
- "traefik.http.routers.${STACK_NAME}_web.entrypoints=web-secure"
- "traefik.http.routers.${STACK_NAME}_web.tls.certresolver=${LETS_ENCRYPT_ENV}"
- "coop-cloud.${STACK_NAME}.version=0.1.1+v1.0.5_3.4.6"
- "coop-cloud.${STACK_NAME}.version=0.2.0+v3.5.5-hometown-1.0.8"
configs: &configs
- source: entrypoint_sh
target: /usr/local/bin/entrypoint.sh
@ -43,7 +43,6 @@ services:
- CACHE_REDIS_URL
- DB_HOST
- DB_NAME
- DB_PASS_FILE=/run/secrets/db_password
- DB_PORT
- DB_USER
- DEFAULT_LOCALE
@ -145,7 +144,7 @@ services:
- WEB_DOMAIN
streaming:
image: decentral1se/hometown:v1.0.6_3.5.2
image: decentral1se/hometown:v3.5.5-hometown-1.0.8
command: node ./streaming
configs: *configs
entrypoint: *entrypoint
@ -166,7 +165,7 @@ services:
volumes: *appVolume # used to make sure this volume is created
sidekiq:
image: decentral1se/hometown:v1.0.6_3.5.2
image: decentral1se/hometown:v3.5.5-hometown-1.0.8
secrets: *secrets
command: bundle exec sidekiq
configs: *configs

View File

@ -23,14 +23,10 @@ file_env() {
unset "$fileVar"
}
file_env "DB_PASS"
file_env "OTP_SECRET"
file_env "SECRET_KEY_BASE"
file_env "SMTP_PASSWORD"
file_env "VAPID_PRIVATE_KEY"
export DB_PASS=$(cat /run/secrets/db_password)
{{ if eq (env "OIDC_ENABLED") "true" }}
file_env "OIDC_CLIENT_SECRET"
{{ end }}
/usr/bin/tini -- "$@"
/usr/bin/tini -s -- "$@"