Compare commits

...

2 Commits

Author SHA1 Message Date
3wc 9f587c6c5a chore: publish 0.2.0+v2.17.3 release
continuous-integration/drone/push Build is failing Details
2023-04-27 18:19:08 -04:00
3wc 3765ceaeb2 Entrypoint tweaks, fix cron container 2023-04-27 14:53:37 -04:00
3 changed files with 21 additions and 10 deletions

View File

@ -1 +1 @@
export LOOMIO_ENTRYPOINT_VERSION=v2
export LOOMIO_ENTRYPOINT_VERSION=v3

View File

@ -33,7 +33,7 @@ x-environment: &default-env
services:
app:
image: loomio/loomio:v2.11.13
image: loomio/loomio:v2.17.3
configs:
- source: entrypoint
target: /entrypoint.sh
@ -64,9 +64,9 @@ services:
- "traefik.http.routers.${STACK_NAME}.rule=Host(`${DOMAIN}`${EXTRA_DOMAINS})"
- "traefik.http.routers.${STACK_NAME}.entrypoints=web-secure"
- "traefik.http.routers.${STACK_NAME}.tls.certresolver=${LETS_ENCRYPT_ENV}"
- "coop-cloud.${STACK_NAME}.version=0.1.0+v2.7.10"
- "coop-cloud.${STACK_NAME}.version=0.2.0+v2.17.3"
worker:
image: loomio/loomio:v2.11.13
image: loomio/loomio:v2.17.3
configs:
- source: entrypoint
target: /entrypoint.sh
@ -88,7 +88,7 @@ services:
- loomio_files:/loomio/public/files
- loomio_plugins:/loomio/plugins/docker
db:
image: postgres:12.7
image: postgres:12.14
networks:
- backend
volumes:
@ -119,10 +119,16 @@ services:
environment:
- REDIS_URL=redis://redis:6379
cron:
image: loomio/loomio:v2.7.10
entrypoint: "/usr/local/bundle/bin/bundle"
command: ["exec", "rake", "loomio:hourly_tasks"]
image: loomio/loomio:v2.17.3
configs:
- source: entrypoint
target: /entrypoint.sh
mode: 0555
entrypoint: [ "/entrypoint.sh", "rake", "loomio:hourly_tasks" ]
environment: *default-env
secrets:
- devise_secret
- secret_cookie_token
volumes:
- loomio_uploads:/loomio/public/system
- loomio_storage:/loomio/storage

View File

@ -29,5 +29,10 @@ if test ! -f /loomio/storage/migrations_ran; then
rake db:setup
touch /loomio/storage/migrations_ran
fi
echo "starting loomio!"
/loomio/docker_start.sh
if [ -n "$1" ]; then
echo "Running '$1'"
$1
else
echo "starting loomio!"
/loomio/docker_start.sh
fi