139 lines
3.4 KiB
Django/Jinja
139 lines
3.4 KiB
Django/Jinja
---
|
|
version: "{{ omni_compose_version | string }}"
|
|
|
|
|
|
x-global-env: &globalenv
|
|
SCIPIO_SECRET_KEY: {{ omni_compose_app_secrets.scipio.application_key }}
|
|
SCIPIO_DB_BACKEND: MARIA
|
|
SCIPIO_DB_HOST: database
|
|
SCIPIO_DB_PORT: "3306"
|
|
SCIPIO_DB_USERNAME: root
|
|
SCIPIO_DB_PASSWORD: {{ omni_compose_app_secrets.scipio.database_password }}
|
|
SCIPIO_DB_SCHEMA: scipio
|
|
SCIPIO_LOG_LEVEL: debug
|
|
SCIPIO_LOG_RETENTION: "864000"
|
|
SCIPIO_LOG_BACKEND: redis
|
|
SCIPIO_LOG_REDIS_SCHEMA: "0"
|
|
SCIPIO_LOG_REDIS_HOSTNAME: cache
|
|
SCIPIO_PHANTOM_FEED: https://blog.tipranks.com/feed/
|
|
SCIPIO_PHANTOM_HANDLER: tipranks
|
|
SCIPIO_EXECUTOR_HANDLER: hologram
|
|
SCIPIO_THRESHOLD_MIN_PROJECTED_RETURN_TO_BUY: "75"
|
|
|
|
|
|
networks:
|
|
scipio:
|
|
name: scipio
|
|
driver: overlay
|
|
ipam:
|
|
driver: default
|
|
config:
|
|
- subnet: {{ omni_compose_apps.scipio.networks.main }}
|
|
|
|
|
|
volumes:
|
|
scipio:
|
|
name: datastore{{ omni_compose_apps.scipio.datastore }}
|
|
driver: glusterfs
|
|
|
|
|
|
services:
|
|
database:
|
|
image: mariadb:{{ omni_compose_apps.scipio.versions.database | default(omni_compose_apps.scipio.versions.default) }}
|
|
hostname: scipio-database
|
|
networks:
|
|
- scipio
|
|
ports:
|
|
- published: {{ omni_compose_apps.scipio.published.ports.3306 }}
|
|
target: 3306
|
|
protocol: tcp
|
|
mode: ingress
|
|
volumes:
|
|
- type: volume
|
|
source: scipio
|
|
target: /var/lib/mysql
|
|
read_only: false
|
|
environment:
|
|
MYSQL_ROOT_PASSWORD: {{ omni_compose_app_secrets.scipio.database_password }}
|
|
MYSQL_DATABASE: scipio
|
|
deploy:
|
|
replicas: 1
|
|
|
|
cache:
|
|
image: redis:{{ omni_compose_apps.scipio.versions.cache | default(omni_compose_apps.scipio.versions.default) }}
|
|
hostname: scipio-cache
|
|
networks:
|
|
- scipio
|
|
deploy:
|
|
replicas: 1
|
|
|
|
api:
|
|
image: scipio:{{ omni_compose_apps.scipio.versions.api | default(omni_compose_apps.scipio.versions.default) }}
|
|
hostname: scipio-api
|
|
depends_on:
|
|
- database
|
|
- cache
|
|
networks:
|
|
- scipio
|
|
ports:
|
|
- published: {{ omni_compose_apps.scipio.published.ports.8080 }}
|
|
target: 8080
|
|
protocol: tcp
|
|
mode: ingress
|
|
environment:
|
|
<<: *globalenv
|
|
SCIPIO_LOG_SOURCE: api
|
|
command: --api
|
|
deploy:
|
|
replicas: 1
|
|
|
|
phantom:
|
|
image: scipio:{{ omni_compose_apps.scipio.versions.phantom | default(omni_compose_apps.scipio.versions.default) }}
|
|
hostname: scipio-phantom
|
|
depends_on:
|
|
- database
|
|
- cache
|
|
networks:
|
|
- scipio
|
|
environment:
|
|
<<: *globalenv
|
|
SCIPIO_INTERVAL: "10"
|
|
SCIPIO_LOG_SOURCE: phantom
|
|
command: --phantom
|
|
deploy:
|
|
replicas: 1
|
|
|
|
executor:
|
|
image: scipio:{{ omni_compose_apps.scipio.versions.executor | default(omni_compose_apps.scipio.versions.default) }}
|
|
hostname: scipio-executor
|
|
depends_on:
|
|
- database
|
|
- cache
|
|
- phantom
|
|
networks:
|
|
- scipio
|
|
environment:
|
|
<<: *globalenv
|
|
SCIPIO_INTERVAL: "5"
|
|
SCIPIO_LOG_SOURCE: executor
|
|
command: --executor
|
|
deploy:
|
|
replicas: 1
|
|
|
|
falcon:
|
|
image: scipio:{{ omni_compose_apps.scipio.versions.falcon | default(omni_compose_apps.scipio.versions.default) }}
|
|
hostname: scipio-falcon
|
|
depends_on:
|
|
- database
|
|
- cache
|
|
- executor
|
|
networks:
|
|
- scipio
|
|
environment:
|
|
<<: *globalenv
|
|
SCIPIO_INTERVAL: "60"
|
|
SCIPIO_LOG_SOURCE: falcon
|
|
command: --falcon
|
|
deploy:
|
|
replicas: 1
|