expert-isa-2-cicd/docker-compose.yml

95 lines
2.7 KiB
YAML
Raw Normal View History

2024-07-02 18:05:49 +00:00
services:
eisa:
2024-07-02 19:13:05 +00:00
image: git.expertdwh.ru/ewh/expertisa:${BRANCH}
2024-07-03 14:10:47 +00:00
pull_policy: always
restart: unless-stopped
deploy:
replicas: 2
2024-07-02 18:05:49 +00:00
configs:
- source: app_config
target: /data/application.yaml
- source: hikari
target: /data/hikari.properties
entrypoint: ["java", "-Dhikaricp.configurationFile=/data/hikari.properties", "-jar", "/app.war"]
2024-07-02 18:05:49 +00:00
environment:
JAVA_TOOL_OPTIONS: "-XX:MaxRAMPercentage=90"
2024-07-02 18:05:49 +00:00
labels:
2024-07-02 19:13:05 +00:00
- "traefik.http.routers.expertisa-${BRANCH}.rule=HostRegexp(`${BRANCH}\\..+`)"
- "traefik.http.routers.expertisa-${BRANCH}.tls=true"
- "traefik.http.services.expertisa-${BRANCH}.loadbalancer.healthcheck.path=/health"
- "traefik.http.services.expertisa-${BRANCH}.loadbalancer.healthcheck.interval=5s"
2024-07-02 18:05:49 +00:00
networks:
- expertisa-twonodes-postgresql
depends_on:
- psql
psql:
container_name: psql-${BRANCH}
image: postgres:latest
environment:
POSTGRES_USER: "admin"
POSTGRES_PASSWORD: "admin"
POSTGRES_DB: "expertisa-metadata"
networks:
- expertisa-twonodes-postgresql
2024-10-04 13:14:58 +00:00
volumes:
2024-10-07 15:11:39 +00:00
- pgdata:/var/lib/postgresql/data
2024-10-04 13:14:58 +00:00
volumes:
2024-10-07 15:11:39 +00:00
pgdata:
name: pgdata-${BRANCH}
networks:
expertisa-twonodes-postgresql:
external: true
2024-07-02 18:05:49 +00:00
configs:
app_config:
content: |
infinispan:
embedded:
enabled: true
cluster-name: eisa-${BRANCH}
2024-07-02 18:05:49 +00:00
eisa:
force-core-update: true
metadata-git:
url: https://git.expertdwh.ru/EWH/expert-isa-2-metadata
branch: ${BRANCH}
2024-07-02 18:05:49 +00:00
enabled: true
token: ${GIT_TOKEN}
file-store-type: s3
s3:
endpoint: minio.app.expertdwh.ru
port: 9000
access-key: ZfyTrAp9tsxkvfyyEIbC
secret-key: jurIHMBGQ54HLu0CXwLSDiahhT6JV6qwZTFhqO37
bucket: dev
2024-07-02 18:05:49 +00:00
db:
common-datasource-name: psql
2024-07-02 18:05:49 +00:00
jdbc:
psql:
url: jdbc:postgresql://psql-${BRANCH}:5432/expertisa-metadata?reWriteBatchedInserts=true
username: admin
password: admin
2024-07-02 18:05:49 +00:00
EWH:
url: jdbc:postgresql://adb-master.expertdwh.ru:5432/ewh?reWriteBatchedInserts=true
2024-07-02 18:05:49 +00:00
username: ewh
password: ${EWH_PASSWORD}
pre-script: core-postgresql.preScript
post-script: core-postgresql.postScript
2024-07-02 18:05:49 +00:00
EWH_ORA:
url: jdbc:oracle:thin:@oracle.expertdwh.ru:1521:ewh
username: ewh
password: ${EWH_PASSWORD}
DWH_ORA:
url: jdbc:oracle:thin:@oracle.expertdwh.ru:1521:ewh
username: dwh
password: ${DWH_PASSWORD}
audit.enabled: true
hikari:
content: |
maximumPoolSize=3