-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #32 from dbazhenov/version_0.1.9
Release version 0.1.9 . Templates improvement. Reorganization of Dock…
- Loading branch information
Showing
15 changed files
with
446 additions
and
112 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,58 @@ | ||
version: '3.8' | ||
services: | ||
valkey: | ||
image: valkey/valkey:8 | ||
environment: | ||
- ALLOW_EMPTY_PASSWORD=yes | ||
ports: | ||
- "6379:6379" | ||
volumes: | ||
- valkey-data:/data | ||
healthcheck: | ||
test: ["CMD", "redis-cli", "ping"] | ||
interval: 5s | ||
timeout: 3s | ||
retries: 5 | ||
|
||
demo_app_dataset: | ||
image: dbazhenov/demo_app_dataset:0.1.9 | ||
depends_on: | ||
valkey: | ||
condition: service_healthy | ||
environment: | ||
- VALKEY_ADDR=valkey | ||
- VALKEY_PORT=6379 | ||
- DATASET_LOAD_TYPE=csv # github or csv | ||
- DATASET_DEMO_CSV_PULLS=data/csv/pulls.csv # https://github.com/dbazhenov/github-stat/raw/refs/heads/main/data/csv/pulls.csv.zip | ||
- DATASET_DEMO_CSV_REPOS=data/csv/repositories.csv # https://github.com/dbazhenov/github-stat/raw/refs/heads/main/data/csv/repositories.csv.zip | ||
- GITHUB_ORG=percona # required for github load type | ||
- GITHUB_TOKEN= # required for github load type | ||
- DELAY_MINUTES=10 | ||
- DEBUG=false | ||
|
||
demo_app_web: | ||
image: dbazhenov/demo_app_web:0.1.9 | ||
depends_on: | ||
valkey: | ||
condition: service_healthy | ||
environment: | ||
- VALKEY_ADDR=valkey | ||
- VALKEY_PORT=6379 | ||
- CONTROL_PANEL_PORT=3000 | ||
ports: | ||
- "3000:3000" | ||
|
||
demo_app_load: | ||
image: dbazhenov/demo_app_load:0.1.9 | ||
depends_on: | ||
valkey: | ||
condition: service_healthy | ||
environment: | ||
- VALKEY_ADDR=valkey | ||
- VALKEY_PORT=6379 | ||
- LOAD_MYSQL=true | ||
- LOAD_POSTGRES=true | ||
- LOAD_MONGODB=true | ||
|
||
volumes: | ||
valkey-data: |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.