I didn't make a release yet. Testing...
This commit is contained in:
parent
0748c73c1a
commit
4c1588a1b6
@ -19,10 +19,12 @@ FOODCOOP_HELP_URL=https://order.example.org
|
|||||||
FOODCOOP_TIME_ZONE=Amsterdam
|
FOODCOOP_TIME_ZONE=Amsterdam
|
||||||
FOODCOOP_USE_NICK=true
|
FOODCOOP_USE_NICK=true
|
||||||
FOODCOOP_LANGUAGE=en
|
FOODCOOP_LANGUAGE=en
|
||||||
|
FOODCOOP_LOGOUT_URL=https://foodcoop.test
|
||||||
FOODCOOP_FOOTER='<a href="https://example.org/">example</a> hosted by <a href="https://yourhoster.org">Your Tech Co-op</a>.'
|
FOODCOOP_FOOTER='<a href="https://example.org/">example</a> hosted by <a href="https://yourhoster.org">Your Tech Co-op</a>.'
|
||||||
USE_APPLE_POINTS=false
|
USE_APPLE_POINTS=false
|
||||||
STOP_ORDERING_UNDER=75
|
STOP_ORDERING_UNDER=75
|
||||||
MINIMUM_BALANCE=0
|
MINIMUM_BALANCE=0
|
||||||
|
DISABLE_MEMBERS_OVERVIEW=true
|
||||||
|
|
||||||
# database settings
|
# database settings
|
||||||
MYSQL_DB=foodsoft
|
MYSQL_DB=foodsoft
|
||||||
|
2
abra.sh
2
abra.sh
@ -1,4 +1,4 @@
|
|||||||
export APP_CONFIG_VERSION=v5
|
export APP_CONFIG_VERSION=v6
|
||||||
export DB_CONFIG_VERSION=v1
|
export DB_CONFIG_VERSION=v1
|
||||||
export ENTRYPOINT_VERSION=v1
|
export ENTRYPOINT_VERSION=v1
|
||||||
export PRODUCTION_ENV_VERSION=v1
|
export PRODUCTION_ENV_VERSION=v1
|
||||||
|
@ -135,6 +135,12 @@ default: &defaults
|
|||||||
#mailing_list: list@example.org
|
#mailing_list: list@example.org
|
||||||
#mailing_list_subscribe: list-subscribe@example.org
|
#mailing_list_subscribe: list-subscribe@example.org
|
||||||
|
|
||||||
|
# URL to redirect to after logging out
|
||||||
|
# logout_redirect_url: {{ env "FOODCOOP_LOGOUT_URL" }}
|
||||||
|
|
||||||
|
# When enabled only administrators can access the member list.
|
||||||
|
# disable_members_overview: {{ env "DISABLE_MEMBERS_OVERVIEW" }}
|
||||||
|
|
||||||
# Config for the exception_notification plugin
|
# Config for the exception_notification plugin
|
||||||
notification:
|
notification:
|
||||||
error_recipients:
|
error_recipients:
|
||||||
|
10
compose.yml
10
compose.yml
@ -21,6 +21,7 @@ x-env: &env
|
|||||||
FOODCOOP_ZIP_CODE:
|
FOODCOOP_ZIP_CODE:
|
||||||
FOODCOOP_USE_NICK:
|
FOODCOOP_USE_NICK:
|
||||||
FOODCOOP_LANGUAGE:
|
FOODCOOP_LANGUAGE:
|
||||||
|
FOODCOOP_LOGOUT_URL:
|
||||||
LOG_LEVEL:
|
LOG_LEVEL:
|
||||||
MINIMUM_BALANCE:
|
MINIMUM_BALANCE:
|
||||||
MYSQL_DB:
|
MYSQL_DB:
|
||||||
@ -39,6 +40,7 @@ x-env: &env
|
|||||||
SMTP_USER_NAME:
|
SMTP_USER_NAME:
|
||||||
STOP_ORDERING_UNDER:
|
STOP_ORDERING_UNDER:
|
||||||
USE_APPLE_POINTS:
|
USE_APPLE_POINTS:
|
||||||
|
DISABLE_MEMBERS_OVERVIEW:
|
||||||
|
|
||||||
x-configs: &configs
|
x-configs: &configs
|
||||||
- source: app_config
|
- source: app_config
|
||||||
@ -56,7 +58,7 @@ x-secrets: &secrets
|
|||||||
|
|
||||||
services:
|
services:
|
||||||
app:
|
app:
|
||||||
image: foodcoops/foodsoft:4.8.0
|
image: foodcoops/foodsoft:4.9.1
|
||||||
networks:
|
networks:
|
||||||
- internal
|
- internal
|
||||||
- proxy
|
- proxy
|
||||||
@ -85,7 +87,7 @@ services:
|
|||||||
- "coop-cloud.${STACK_NAME}.version=1.2.0+4.8.0"
|
- "coop-cloud.${STACK_NAME}.version=1.2.0+4.8.0"
|
||||||
|
|
||||||
cron:
|
cron:
|
||||||
image: foodcoops/foodsoft:4.8.0
|
image: foodcoops/foodsoft:4.9.1
|
||||||
secrets: *secrets
|
secrets: *secrets
|
||||||
configs: *configs
|
configs: *configs
|
||||||
entrypoint: *entrypoint
|
entrypoint: *entrypoint
|
||||||
@ -96,7 +98,7 @@ services:
|
|||||||
- internal
|
- internal
|
||||||
|
|
||||||
worker:
|
worker:
|
||||||
image: foodcoops/foodsoft:4.8.0
|
image: foodcoops/foodsoft:4.9.1
|
||||||
secrets: *secrets
|
secrets: *secrets
|
||||||
configs: *configs
|
configs: *configs
|
||||||
entrypoint: *entrypoint
|
entrypoint: *entrypoint
|
||||||
@ -107,7 +109,7 @@ services:
|
|||||||
- internal
|
- internal
|
||||||
|
|
||||||
smtp:
|
smtp:
|
||||||
image: foodcoops/foodsoft:4.8.0
|
image: foodcoops/foodsoft:4.9.1
|
||||||
configs: *configs
|
configs: *configs
|
||||||
entrypoint: *entrypoint
|
entrypoint: *entrypoint
|
||||||
secrets: *secrets
|
secrets: *secrets
|
||||||
|
Loading…
x
Reference in New Issue
Block a user