This repository has been archived on 2021-07-22. You can view files and clone it, but cannot push or open issues or pull requests.
foodsoft/compose.yml

175 lines
4.2 KiB
YAML
Raw Normal View History

2020-10-06 15:11:16 +00:00
---
version: "3.8"
services:
app:
image: "foodcoops/foodsoft:4.7.0"
2020-10-06 15:11:16 +00:00
networks:
- internal
- proxy
secrets:
2020-11-02 17:20:13 +00:00
- db_password
2020-11-06 11:16:21 +00:00
- secret_key_base
- smtp_password
2020-11-01 09:45:01 +00:00
configs:
2020-11-01 11:00:18 +00:00
- source: app_config
target: /usr/src/app/config/app_config.yml
- source: db_config
target: /usr/src/app/config/database.yml
- source: entrypoint
target: /usr/src/app/docker-entrypoint.sh
mode: 0555
entrypoint: /usr/src/app/docker-entrypoint.sh
environment:
- DOMAIN
- EMAIL_ERROR
- EMAIL_REPLY
- EMAIL_SENDER
- FOODCOOP_CITY
- FOODCOOP_COUNTRY
- FOODCOOP_EMAIL
- FOODCOOP_FOOTER
- FOODCOOP_HELP_URL
- FOODCOOP_HOMEPAGE
- FOODCOOP_NAME
- FOODCOOP_PHONE
- FOODCOOP_STREET
- FOODCOOP_TIME_ZONE
- FOODCOOP_ZIP_CODE
- MYSQL_HOST=db
2020-11-08 15:00:19 +00:00
- MYSQL_DB=foodsoft
- MYSQL_PORT=3306
- MYSQL_USER=foodsoft
- QUEUE=foodsoft_notifier
2020-11-01 11:36:16 +00:00
- REDIS_URL=redis://cache:6379
2020-11-06 11:16:55 +00:00
- SECRET_KEY_BASE_FILE=/run/secrets/secret_key_base
2020-11-01 11:36:16 +00:00
- SMTP_ADDRESS
- SMTP_DOMAIN
2020-11-06 11:16:55 +00:00
- SMTP_PASSWORD_FILE=/run/secrets/smtp_password
2020-11-01 11:36:16 +00:00
- SMTP_PORT
- SMTP_USER_NAME
healthcheck:
test: ["CMD", "curl", "-f", "http://localhost:3000"]
interval: 15s
timeout: 10s
retries: 10
start_period: 1m
2020-10-06 15:11:16 +00:00
deploy:
update_config:
failure_action: rollback
order: start-first
labels:
- "traefik.enable=true"
- "traefik.http.routers.foodsoft.rule=Host(`${DOMAIN}`)"
- "traefik.http.routers.foodsoft.entrypoints=web-secure"
- "traefik.http.services.foodsoft.loadbalancer.server.port=3000"
- "traefik.http.routers.foodsoft.tls.certresolver=${LETS_ENCRYPT_ENV}"
2020-10-06 15:11:16 +00:00
2020-10-27 07:47:20 +00:00
cron:
image: "foodcoops/foodsoft:4.7.0"
2020-10-06 15:11:16 +00:00
command: ./proc-start cron
environment:
- MYSQL_DB
- MYSQL_HOST
- MYSQL_PORT
- MYSQL_USER
configs:
- source: db_config
target: /usr/src/app/config/database.yml
secrets:
- db_password
2020-10-06 15:11:16 +00:00
networks:
- internal
2020-10-27 07:47:20 +00:00
worker:
image: "foodcoops/foodsoft:4.7.0"
2020-10-06 15:11:16 +00:00
command: ./proc-start worker
environment:
- MYSQL_DB
- MYSQL_HOST
- MYSQL_PORT
- MYSQL_USER
configs:
- source: db_config
target: /usr/src/app/config/database.yml
secrets:
- db_password
2020-10-06 15:11:16 +00:00
networks:
- internal
2020-11-01 11:37:25 +00:00
smtp:
image: "foodcoops/foodsoft:4.7.0"
command: ./proc-start mail
configs:
- source: db_config
target: /usr/src/app/config/database.yml
secrets:
- db_password
2020-11-01 11:37:25 +00:00
environment:
- SMTP_SERVER_PORT
- SMTP_SERVER_HOST
- MYSQL_DB
- MYSQL_HOST
- MYSQL_PORT
- MYSQL_USER
2020-11-01 11:37:25 +00:00
networks:
- internal
2020-10-27 07:47:20 +00:00
db:
2020-10-06 15:11:16 +00:00
image: "mariadb:10.5"
command: |
mysqld --character-set-server=utf8mb4 --collation-server=utf8mb4_unicode_ci
environment:
- MYSQL_USER=foodsoft
2020-11-06 11:52:58 +00:00
- MYSQL_DATABASE=foodsoft
2020-11-02 17:20:13 +00:00
- MYSQL_PASSWORD_FILE=/run/secrets/db_password
- MYSQL_ROOT_PASSWORD_FILE=/run/secrets/db_root_password
2020-10-06 15:11:16 +00:00
secrets:
2020-11-02 17:20:13 +00:00
- db_password
- db_root_password
2020-10-06 15:11:16 +00:00
volumes:
2020-11-08 14:18:04 +00:00
- "mariadb:/var/lib/mysql"
2020-10-06 15:11:16 +00:00
networks:
- internal
2020-10-27 07:45:19 +00:00
cache:
image: "redis:6"
2020-11-01 11:36:16 +00:00
networks:
- internal
2020-10-06 15:11:16 +00:00
networks:
internal:
proxy:
external: true
volumes:
2020-11-08 14:18:04 +00:00
mariadb:
2020-10-06 15:11:16 +00:00
configs:
app_config:
name: ${STACK_NAME}_app_config_${APP_CONFIG_VERSION}
2020-10-06 15:11:16 +00:00
file: app_config.yml.tmpl
template_driver: golang
db_config:
name: ${STACK_NAME}_db_config_${DB_CONFIG_VERSION}
file: database.yml.tmpl
template_driver: golang
entrypoint:
name: ${STACK_NAME}_entrypoint_${ENTRYPOINT_VERSION}
2020-11-02 17:07:53 +00:00
file: entrypoint.sh.tmpl
template_driver: golang
2020-10-06 15:11:16 +00:00
secrets:
2020-11-02 17:20:13 +00:00
db_password:
name: ${STACK_NAME}_db_password_${SECRET_DB_PASSWORD_VERSION}
2020-10-06 15:11:16 +00:00
external: true
2020-11-02 17:20:13 +00:00
db_root_password:
name: ${STACK_NAME}_db_root_password_${SECRET_DB_ROOT_PASSWORD_VERSION}
external: true
2020-11-02 17:20:13 +00:00
smtp_password:
2020-11-02 17:07:53 +00:00
name: ${STACK_NAME}_smtp_password_${SECRET_SMTP_PASSWORD_VERSION}
external: true
secret_key_base:
name: ${STACK_NAME}_secret_key_base_${SECRET_SECRET_KEY_BASE_VERSION}
external: true