Compare commits
5 Commits
96ed5e47be
...
a8cf68f70e
Author | SHA1 | Date | |
---|---|---|---|
a8cf68f70e | |||
f0d5169e9e | |||
a629cb0286 | |||
e445708ed4 | |||
b02e6a2791 |
@ -3,6 +3,7 @@ version: "{{ omni_compose_version | string }}"
|
|||||||
|
|
||||||
|
|
||||||
x-global-env: &globalenv
|
x-global-env: &globalenv
|
||||||
|
SCIPIO_SECRET_KEY: {{ omni_compose_app_secrets.scipio.application_key }}
|
||||||
SCIPIO_DB_BACKEND: MARIA
|
SCIPIO_DB_BACKEND: MARIA
|
||||||
SCIPIO_DB_HOST: database
|
SCIPIO_DB_HOST: database
|
||||||
SCIPIO_DB_PORT: "3306"
|
SCIPIO_DB_PORT: "3306"
|
||||||
@ -12,6 +13,7 @@ x-global-env: &globalenv
|
|||||||
SCIPIO_LOG_LEVEL: debug
|
SCIPIO_LOG_LEVEL: debug
|
||||||
SCIPIO_LOG_RETENTION: "864000"
|
SCIPIO_LOG_RETENTION: "864000"
|
||||||
SCIPIO_LOG_BACKEND: redis
|
SCIPIO_LOG_BACKEND: redis
|
||||||
|
SCIPIO_LOG_REDIS_SCHEMA: "0"
|
||||||
SCIPIO_LOG_REDIS_HOSTNAME: cache
|
SCIPIO_LOG_REDIS_HOSTNAME: cache
|
||||||
SCIPIO_PHANTOM_FEED: https://blog.tipranks.com/feed/
|
SCIPIO_PHANTOM_FEED: https://blog.tipranks.com/feed/
|
||||||
SCIPIO_PHANTOM_HANDLER: tipranks
|
SCIPIO_PHANTOM_HANDLER: tipranks
|
||||||
@ -65,6 +67,26 @@ services:
|
|||||||
deploy:
|
deploy:
|
||||||
replicas: 1
|
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:
|
phantom:
|
||||||
image: scipio:{{ omni_compose_apps.scipio.versions.phantom | default(omni_compose_apps.scipio.versions.default) }}
|
image: scipio:{{ omni_compose_apps.scipio.versions.phantom | default(omni_compose_apps.scipio.versions.default) }}
|
||||||
hostname: scipio-phantom
|
hostname: scipio-phantom
|
||||||
|
@ -93,7 +93,7 @@ omni_compose_apps:
|
|||||||
scipio:
|
scipio:
|
||||||
build:
|
build:
|
||||||
repository: git@github.com:tjyork/Scipio.git
|
repository: git@github.com:tjyork/Scipio.git
|
||||||
version: 0.6.0
|
version: 1.0.2
|
||||||
datastore: /appdata/scipio
|
datastore: /appdata/scipio
|
||||||
account:
|
account:
|
||||||
name: mech_scipio
|
name: mech_scipio
|
||||||
@ -106,7 +106,6 @@ omni_compose_apps:
|
|||||||
networks:
|
networks:
|
||||||
main: 192.168.106.0/24
|
main: 192.168.106.0/24
|
||||||
versions:
|
versions:
|
||||||
default: 0.8.0
|
default: 1.0.2
|
||||||
database: "10"
|
database: "10"
|
||||||
cache: "6.2"
|
cache: "6.2"
|
||||||
dashboard: latest
|
|
||||||
|
@ -1 +1 @@
|
|||||||
Subproject commit a6d05271693459972cc749ab6024d797b9904ee1
|
Subproject commit 0248a5772ab9f35ce8cdf43dfe5926d59636baee
|
Reference in New Issue
Block a user