2021-11-22 11:17:10 +00:00
|
|
|
services:
|
2025-03-07 10:08:07 +00:00
|
|
|
stream:
|
|
|
|
image: 'hardcoreeng/huly-stream'
|
|
|
|
extra_hosts:
|
|
|
|
- 'huly.local:host-gateway'
|
|
|
|
container_name: stream
|
|
|
|
environment:
|
|
|
|
- STREAM_ENDPOINT_URL=s3://huly.local:9000
|
|
|
|
- STREAM_INSECURE=true
|
|
|
|
- AWS_ACCESS_KEY_ID=minioadmin
|
|
|
|
- AWS_SECRET_ACCESS_KEY=minioadmin
|
|
|
|
ports:
|
|
|
|
- 1080:1080
|
|
|
|
restart: unless-stopped
|
2021-11-22 11:17:10 +00:00
|
|
|
mongodb:
|
2024-01-30 07:47:54 +00:00
|
|
|
image: 'mongo:7-jammy'
|
2021-11-22 11:17:10 +00:00
|
|
|
container_name: mongodb
|
2024-08-26 16:15:56 +00:00
|
|
|
extra_hosts:
|
2025-02-24 06:12:19 +00:00
|
|
|
- 'huly.local:host-gateway'
|
2024-08-26 16:15:56 +00:00
|
|
|
healthcheck:
|
|
|
|
test: echo "try { db.currentOp().ok } catch (err) { }" | mongosh --port 27017 --quiet
|
|
|
|
interval: 5s
|
|
|
|
timeout: 30s
|
|
|
|
start_period: 0s
|
|
|
|
start_interval: 1s
|
|
|
|
retries: 30
|
2021-11-22 11:17:10 +00:00
|
|
|
environment:
|
|
|
|
- PUID=1000
|
|
|
|
- PGID=1000
|
|
|
|
volumes:
|
|
|
|
- db:/data/db
|
|
|
|
ports:
|
2022-01-11 09:11:14 +00:00
|
|
|
- 27017:27017
|
2021-11-22 11:17:10 +00:00
|
|
|
restart: unless-stopped
|
2024-11-14 13:00:21 +00:00
|
|
|
cockroach:
|
2024-12-12 17:20:35 +00:00
|
|
|
image: cockroachdb/cockroach:latest-v24.2
|
2025-03-05 05:22:15 +00:00
|
|
|
extra_hosts:
|
|
|
|
- 'huly.local:host-gateway'
|
2024-12-12 17:20:35 +00:00
|
|
|
ports:
|
|
|
|
- '26257:26257'
|
|
|
|
- '8089:8080'
|
|
|
|
command: start-single-node --insecure
|
|
|
|
volumes:
|
|
|
|
- cockroach_db:/cockroach/cockroach-data
|
|
|
|
restart: unless-stopped
|
2021-11-22 11:17:10 +00:00
|
|
|
minio:
|
|
|
|
image: 'minio/minio'
|
|
|
|
command: server /data --address ":9000" --console-address ":9001"
|
|
|
|
ports:
|
|
|
|
- 9000:9000
|
2022-01-20 09:27:41 +00:00
|
|
|
- 9001:9001
|
2021-11-22 11:17:10 +00:00
|
|
|
volumes:
|
|
|
|
- files:/data
|
2023-01-24 13:42:47 +00:00
|
|
|
restart: unless-stopped
|
2021-11-22 11:17:10 +00:00
|
|
|
elastic:
|
2021-12-15 09:04:43 +00:00
|
|
|
image: 'elasticsearch:7.14.2'
|
2021-11-22 11:17:10 +00:00
|
|
|
command: |
|
|
|
|
/bin/sh -c "./bin/elasticsearch-plugin list | grep -q ingest-attachment || yes | ./bin/elasticsearch-plugin install --silent ingest-attachment;
|
|
|
|
/usr/local/bin/docker-entrypoint.sh eswrapper"
|
|
|
|
volumes:
|
|
|
|
- elastic:/usr/share/elasticsearch/data
|
|
|
|
ports:
|
2022-01-11 09:11:14 +00:00
|
|
|
- 9200:9200
|
2021-11-22 11:17:10 +00:00
|
|
|
environment:
|
|
|
|
- ELASTICSEARCH_PORT_NUMBER=9200
|
|
|
|
- BITNAMI_DEBUG=true
|
|
|
|
- discovery.type=single-node
|
2021-12-30 09:04:32 +00:00
|
|
|
- ES_JAVA_OPTS=-Xms1024m -Xmx1024m
|
|
|
|
- http.cors.enabled=true
|
2024-12-12 17:20:35 +00:00
|
|
|
- http.cors.allow-origin=http://localhost:8082
|
2021-12-22 09:02:51 +00:00
|
|
|
healthcheck:
|
|
|
|
interval: 20s
|
|
|
|
retries: 10
|
|
|
|
test: curl -s http://localhost:9200/_cluster/health | grep -vq '"status":"red"'
|
2023-01-24 13:42:47 +00:00
|
|
|
restart: unless-stopped
|
2021-11-22 11:17:10 +00:00
|
|
|
account:
|
2022-02-23 16:10:43 +00:00
|
|
|
image: hardcoreeng/account
|
2024-09-02 11:31:37 +00:00
|
|
|
extra_hosts:
|
2025-02-24 06:12:19 +00:00
|
|
|
- 'huly.local:host-gateway'
|
2021-11-22 11:17:10 +00:00
|
|
|
links:
|
|
|
|
- mongodb
|
2022-01-11 13:35:21 +00:00
|
|
|
- minio
|
2024-10-29 05:57:28 +00:00
|
|
|
- stats
|
2021-11-22 11:17:10 +00:00
|
|
|
ports:
|
|
|
|
- 3000:3000
|
2024-07-27 15:04:21 +00:00
|
|
|
volumes:
|
2024-07-30 07:12:18 +00:00
|
|
|
- ./branding.json:/var/cfg/branding.json
|
2021-11-22 11:17:10 +00:00
|
|
|
environment:
|
2024-07-27 15:04:21 +00:00
|
|
|
- ACCOUNT_PORT=3000
|
2022-02-25 09:04:02 +00:00
|
|
|
- SERVER_SECRET=secret
|
2025-02-17 09:23:29 +00:00
|
|
|
- ADMIN_EMAILS=admin
|
2025-02-24 06:12:19 +00:00
|
|
|
- STATS_URL=http://huly.local:4900
|
|
|
|
# - DB_URL=postgresql://root@huly.local:26257/defaultdb?sslmode=disable
|
2024-10-01 06:44:49 +00:00
|
|
|
- DB_URL=${MONGO_URL}
|
2024-10-18 13:22:26 +00:00
|
|
|
# - DB_NS=account-2
|
2024-12-12 17:20:35 +00:00
|
|
|
# Pass only one region to disallow selection for new workspaces.Ø
|
2025-02-04 03:31:03 +00:00
|
|
|
- REGION_INFO=|Mongo;cockroach|CockroachDB
|
2024-12-12 17:20:35 +00:00
|
|
|
# - REGION_INFO=cockroach|CockroachDB
|
2025-02-24 06:12:19 +00:00
|
|
|
- TRANSACTOR_URL=ws://huly.local:3333,ws://huly.local:3332;;cockroach,
|
2024-07-27 15:04:21 +00:00
|
|
|
- SES_URL=
|
2024-05-17 10:08:30 +00:00
|
|
|
- STORAGE_CONFIG=${STORAGE_CONFIG}
|
2025-02-24 06:12:19 +00:00
|
|
|
- FRONT_URL=http://huly.local:8087
|
2024-07-27 15:04:21 +00:00
|
|
|
- RESERVED_DB_NAMES=telegram,gmail,github
|
2023-04-25 07:34:10 +00:00
|
|
|
- MODEL_ENABLED=*
|
2024-07-27 15:04:21 +00:00
|
|
|
- LAST_NAME_FIRST=true
|
2024-10-15 13:09:00 +00:00
|
|
|
# - WS_LIVENESS_DAYS=1
|
2025-02-24 06:12:19 +00:00
|
|
|
- ACCOUNTS_URL=http://huly.local:3000
|
2024-07-30 07:12:18 +00:00
|
|
|
- BRANDING_PATH=/var/cfg/branding.json
|
2024-10-15 10:03:55 +00:00
|
|
|
# - DISABLE_SIGNUP=true
|
2024-07-27 15:04:21 +00:00
|
|
|
restart: unless-stopped
|
2024-10-29 05:57:28 +00:00
|
|
|
stats:
|
|
|
|
image: hardcoreeng/stats
|
|
|
|
extra_hosts:
|
2025-02-24 06:12:19 +00:00
|
|
|
- 'huly.local:host-gateway'
|
2024-10-29 05:57:28 +00:00
|
|
|
ports:
|
|
|
|
- 4900:4900
|
|
|
|
environment:
|
|
|
|
- PORT=4900
|
|
|
|
- SERVER_SECRET=secret
|
2024-11-12 17:13:11 +00:00
|
|
|
restart: unless-stopped
|
2024-09-02 16:12:04 +00:00
|
|
|
workspace:
|
|
|
|
image: hardcoreeng/workspace
|
2024-09-09 08:40:49 +00:00
|
|
|
extra_hosts:
|
2025-02-24 06:12:19 +00:00
|
|
|
- 'huly.local:host-gateway'
|
2024-09-02 16:12:04 +00:00
|
|
|
links:
|
|
|
|
- mongodb
|
|
|
|
- minio
|
2024-10-29 05:57:28 +00:00
|
|
|
- stats
|
2024-09-02 16:12:04 +00:00
|
|
|
volumes:
|
|
|
|
- ./branding.json:/var/cfg/branding.json
|
|
|
|
environment:
|
2024-12-12 17:20:35 +00:00
|
|
|
- WS_OPERATION=all+backup
|
2024-09-02 16:12:04 +00:00
|
|
|
- SERVER_SECRET=secret
|
2024-10-01 06:44:49 +00:00
|
|
|
- DB_URL=${MONGO_URL}
|
2025-02-24 06:12:19 +00:00
|
|
|
- STATS_URL=http://huly.local:4900
|
2024-09-02 16:12:04 +00:00
|
|
|
- SES_URL=
|
|
|
|
- STORAGE_CONFIG=${STORAGE_CONFIG}
|
|
|
|
- RESERVED_DB_NAMES=telegram,gmail,github
|
|
|
|
- MODEL_ENABLED=*
|
2025-02-24 06:12:19 +00:00
|
|
|
- ACCOUNTS_URL=http://huly.local:3000
|
2024-09-02 16:12:04 +00:00
|
|
|
- BRANDING_PATH=/var/cfg/branding.json
|
2024-09-12 11:44:40 +00:00
|
|
|
# - PARALLEL=2
|
2024-12-12 17:20:35 +00:00
|
|
|
- BACKUP_STORAGE=${BACKUP_STORAGE_CONFIG}
|
|
|
|
- BACKUP_BUCKET=${BACKUP_BUCKET_NAME}
|
2025-02-14 02:00:23 +00:00
|
|
|
# - INIT_WORKSPACE=staging-dev
|
2024-09-02 16:12:04 +00:00
|
|
|
restart: unless-stopped
|
2024-11-14 13:00:21 +00:00
|
|
|
workspace_cockroach:
|
|
|
|
image: hardcoreeng/workspace
|
|
|
|
extra_hosts:
|
2025-02-24 06:12:19 +00:00
|
|
|
- 'huly.local:host-gateway'
|
2024-11-14 13:00:21 +00:00
|
|
|
links:
|
|
|
|
- cockroach
|
|
|
|
- minio
|
|
|
|
- stats
|
|
|
|
volumes:
|
|
|
|
- ./branding.json:/var/cfg/branding.json
|
|
|
|
environment:
|
2024-12-12 17:20:35 +00:00
|
|
|
- WS_OPERATION=all+backup
|
2024-11-14 13:00:21 +00:00
|
|
|
- SERVER_SECRET=secret
|
2025-02-24 06:12:19 +00:00
|
|
|
- DB_URL=postgresql://root@huly.local:26257/defaultdb?sslmode=disable
|
|
|
|
- STATS_URL=http://huly.local:4900
|
2024-11-14 13:00:21 +00:00
|
|
|
- SES_URL=
|
|
|
|
- REGION=cockroach
|
|
|
|
- STORAGE_CONFIG=${STORAGE_CONFIG}
|
|
|
|
- RESERVED_DB_NAMES=telegram,gmail,github
|
|
|
|
- MODEL_ENABLED=*
|
2025-02-24 06:12:19 +00:00
|
|
|
- ACCOUNTS_URL=http://huly.local:3000
|
2024-11-14 13:00:21 +00:00
|
|
|
- BRANDING_PATH=/var/cfg/branding.json
|
|
|
|
# - PARALLEL=2
|
2024-12-12 17:20:35 +00:00
|
|
|
- BACKUP_STORAGE=${BACKUP_STORAGE_CONFIG}
|
|
|
|
- BACKUP_BUCKET=${BACKUP_BUCKET_NAME}
|
2025-02-14 02:00:23 +00:00
|
|
|
# - INIT_WORKSPACE=staging-dev
|
2024-12-12 17:20:35 +00:00
|
|
|
restart: unless-stopped
|
2024-07-27 15:04:21 +00:00
|
|
|
collaborator:
|
|
|
|
image: hardcoreeng/collaborator
|
2024-09-02 11:31:37 +00:00
|
|
|
extra_hosts:
|
2025-02-24 06:12:19 +00:00
|
|
|
- 'huly.local:host-gateway'
|
2024-07-27 15:04:21 +00:00
|
|
|
links:
|
|
|
|
- mongodb
|
|
|
|
- minio
|
|
|
|
- transactor
|
2024-10-29 05:57:28 +00:00
|
|
|
- stats
|
2024-07-27 15:04:21 +00:00
|
|
|
ports:
|
|
|
|
- 3078:3078
|
|
|
|
environment:
|
|
|
|
- COLLABORATOR_PORT=3078
|
|
|
|
- SECRET=secret
|
2025-02-24 06:12:19 +00:00
|
|
|
- ACCOUNTS_URL=http://huly.local:3000
|
2024-07-27 15:04:21 +00:00
|
|
|
- STORAGE_CONFIG=${STORAGE_CONFIG}
|
2025-02-24 06:12:19 +00:00
|
|
|
- STATS_URL=http://huly.local:4900
|
2023-01-24 13:42:47 +00:00
|
|
|
restart: unless-stopped
|
2021-11-22 11:17:10 +00:00
|
|
|
front:
|
2022-02-23 16:10:43 +00:00
|
|
|
image: hardcoreeng/front
|
2024-09-02 11:31:37 +00:00
|
|
|
extra_hosts:
|
2025-02-24 06:12:19 +00:00
|
|
|
- 'huly.local:host-gateway'
|
2021-11-22 11:17:10 +00:00
|
|
|
links:
|
|
|
|
- mongodb
|
|
|
|
- minio
|
|
|
|
- elastic
|
2021-12-07 18:45:11 +00:00
|
|
|
- transactor
|
2024-07-27 15:04:21 +00:00
|
|
|
- collaborator
|
2024-10-29 05:57:28 +00:00
|
|
|
- stats
|
2021-11-22 11:17:10 +00:00
|
|
|
ports:
|
2022-09-09 03:44:33 +00:00
|
|
|
- 8087:8080
|
2024-07-27 15:04:21 +00:00
|
|
|
- 8088:8080
|
2021-11-22 11:17:10 +00:00
|
|
|
environment:
|
2022-02-25 09:04:02 +00:00
|
|
|
- SERVER_PORT=8080
|
|
|
|
- SERVER_SECRET=secret
|
2025-02-24 06:12:19 +00:00
|
|
|
- ACCOUNTS_URL=http://huly.local:3000
|
|
|
|
- STATS_URL=http://huly.local:4900
|
2024-08-16 07:00:55 +00:00
|
|
|
- UPLOAD_URL=/files
|
2025-02-24 06:12:19 +00:00
|
|
|
- GMAIL_URL=http://huly.local:8088
|
|
|
|
- CALENDAR_URL=http://huly.local:8095
|
|
|
|
- TELEGRAM_URL=http://huly.local:8086
|
|
|
|
- REKONI_URL=http://huly.local:4004
|
|
|
|
- COLLABORATOR_URL=ws://huly.local:3078
|
2024-05-17 10:08:30 +00:00
|
|
|
- STORAGE_CONFIG=${STORAGE_CONFIG}
|
2025-02-24 06:12:19 +00:00
|
|
|
- GITHUB_URL=http://huly.local:3500
|
|
|
|
- PRINT_URL=http://huly.local:4005
|
|
|
|
- SIGN_URL=http://huly.local:4006
|
|
|
|
- ANALYTICS_COLLECTOR_URL=http://huly.local:4017
|
2024-07-27 15:04:21 +00:00
|
|
|
- DESKTOP_UPDATES_URL=https://dist.huly.io
|
|
|
|
- DESKTOP_UPDATES_CHANNEL=dev
|
2025-02-24 06:12:19 +00:00
|
|
|
- BRANDING_URL=http://huly.local:8087/branding.json
|
2024-10-15 10:03:55 +00:00
|
|
|
# - DISABLE_SIGNUP=true
|
2024-08-16 07:00:55 +00:00
|
|
|
restart: unless-stopped
|
2021-11-22 11:17:10 +00:00
|
|
|
transactor:
|
2022-02-23 16:10:43 +00:00
|
|
|
image: hardcoreeng/transactor
|
2024-09-02 11:31:37 +00:00
|
|
|
extra_hosts:
|
2025-02-24 06:12:19 +00:00
|
|
|
- 'huly.local:host-gateway'
|
2021-11-22 11:17:10 +00:00
|
|
|
links:
|
|
|
|
- mongodb
|
2022-01-20 09:27:41 +00:00
|
|
|
- minio
|
2024-02-02 09:27:27 +00:00
|
|
|
- account
|
2024-10-29 05:57:28 +00:00
|
|
|
- stats
|
2022-03-18 06:37:49 +00:00
|
|
|
# - apm-server
|
2021-11-22 11:17:10 +00:00
|
|
|
ports:
|
2022-01-11 09:11:14 +00:00
|
|
|
- 3333:3333
|
2024-07-27 15:04:21 +00:00
|
|
|
volumes:
|
2024-12-12 17:20:35 +00:00
|
|
|
- ./branding.json:/var/cfg/branding.json
|
2021-11-22 11:17:10 +00:00
|
|
|
environment:
|
2024-07-27 15:04:21 +00:00
|
|
|
# - SERVER_PROVIDER=uweb
|
|
|
|
# - UWS_HTTP_MAX_HEADERS_SIZE="32768"
|
2024-12-12 17:20:35 +00:00
|
|
|
- UV_THREADPOOL_SIZE=10
|
2022-02-25 09:04:02 +00:00
|
|
|
- SERVER_PORT=3333
|
|
|
|
- SERVER_SECRET=secret
|
2025-01-11 14:53:04 +00:00
|
|
|
- ENABLE_COMPRESSION=false
|
2025-02-24 06:12:19 +00:00
|
|
|
- STATS_URL=http://huly.local:4900
|
|
|
|
- FULLTEXT_URL=http://huly.local:4700
|
2024-10-01 06:44:49 +00:00
|
|
|
# - DB_URL=postgresql://postgres:example@postgres:5432
|
|
|
|
- DB_URL=${MONGO_URL}
|
2024-08-26 16:15:56 +00:00
|
|
|
- MONGO_URL=${MONGO_URL}
|
2024-08-15 10:10:29 +00:00
|
|
|
- 'MONGO_OPTIONS={"appName": "transactor", "maxPoolSize": 10}'
|
2023-10-24 08:53:33 +00:00
|
|
|
- METRICS_CONSOLE=false
|
|
|
|
- METRICS_FILE=metrics.txt
|
2024-12-12 17:20:35 +00:00
|
|
|
- STORAGE_CONFIG=${STORAGE_CONFIG}
|
2025-02-24 06:12:19 +00:00
|
|
|
- FRONT_URL=http://huly.local:8087
|
2022-03-18 06:37:49 +00:00
|
|
|
# - APM_SERVER_URL=http://apm-server:8200
|
2024-07-27 15:04:21 +00:00
|
|
|
- SES_URL=''
|
2025-02-24 06:12:19 +00:00
|
|
|
- ACCOUNTS_URL=http://huly.local:3000
|
2024-12-12 17:20:35 +00:00
|
|
|
- LAST_NAME_FIRST=true
|
2024-10-01 07:53:36 +00:00
|
|
|
- BRANDING_PATH=/var/cfg/branding.json
|
2025-02-24 06:12:19 +00:00
|
|
|
- AI_BOT_URL=http://huly.local:4010
|
2023-01-24 13:42:47 +00:00
|
|
|
restart: unless-stopped
|
2024-11-14 13:00:21 +00:00
|
|
|
transactor_cockroach:
|
|
|
|
image: hardcoreeng/transactor
|
|
|
|
extra_hosts:
|
2025-02-24 06:12:19 +00:00
|
|
|
- 'huly.local:host-gateway'
|
2024-11-14 13:00:21 +00:00
|
|
|
links:
|
|
|
|
- cockroach
|
|
|
|
- minio
|
|
|
|
- account
|
|
|
|
- stats
|
|
|
|
# - apm-server
|
|
|
|
ports:
|
|
|
|
- 3332:3332
|
|
|
|
volumes:
|
2024-12-12 17:20:35 +00:00
|
|
|
- ./branding.json:/var/cfg/branding.json
|
2024-11-14 13:00:21 +00:00
|
|
|
environment:
|
|
|
|
# - SERVER_PROVIDER=uweb
|
|
|
|
# - UWS_HTTP_MAX_HEADERS_SIZE="32768"
|
|
|
|
# - UV_THREADPOOL_SIZE=10
|
|
|
|
- SERVER_PORT=3332
|
|
|
|
- SERVER_SECRET=secret
|
2025-01-11 14:53:04 +00:00
|
|
|
- ENABLE_COMPRESSION=false
|
2025-02-24 06:12:19 +00:00
|
|
|
- FULLTEXT_URL=http://huly.local:4702
|
|
|
|
- STATS_URL=http://huly.local:4900
|
|
|
|
- DB_URL=postgresql://root@huly.local:26257/defaultdb?sslmode=disable
|
2024-10-09 05:08:27 +00:00
|
|
|
- METRICS_CONSOLE=false
|
|
|
|
- METRICS_FILE=metrics.txt
|
|
|
|
- STORAGE_CONFIG=${STORAGE_CONFIG}
|
2025-02-24 06:12:19 +00:00
|
|
|
- FRONT_URL=http://huly.local:8087
|
2024-10-09 05:08:27 +00:00
|
|
|
# - APM_SERVER_URL=http://apm-server:8200
|
|
|
|
- SES_URL=''
|
2025-02-24 06:12:19 +00:00
|
|
|
- ACCOUNTS_URL=http://huly.local:3000
|
2024-12-12 17:20:35 +00:00
|
|
|
- LAST_NAME_FIRST=true
|
|
|
|
- BRANDING_PATH=/var/cfg/branding.json
|
2025-02-24 06:12:19 +00:00
|
|
|
- AI_BOT_URL=http://huly.local:4010
|
2024-12-12 17:20:35 +00:00
|
|
|
restart: unless-stopped
|
2025-01-31 04:42:06 +00:00
|
|
|
green:
|
|
|
|
image: hardcoreeng/green
|
|
|
|
extra_hosts:
|
2025-02-24 06:12:19 +00:00
|
|
|
- 'huly.local:host-gateway'
|
2025-01-31 04:42:06 +00:00
|
|
|
links:
|
|
|
|
- cockroach
|
|
|
|
- stats
|
|
|
|
ports:
|
|
|
|
- 6767:6767
|
|
|
|
environment:
|
|
|
|
- PORT=6767
|
|
|
|
- AUTH_TOKEN=secret
|
2025-02-24 06:12:19 +00:00
|
|
|
- STATS_URL=http://huly.local:4900
|
|
|
|
- DB_URL=postgresql://root@huly.local:26257/defaultdb?sslmode=disable
|
2025-01-31 04:42:06 +00:00
|
|
|
restart: unless-stopped
|
2023-01-04 17:58:54 +00:00
|
|
|
rekoni:
|
|
|
|
image: hardcoreeng/rekoni-service
|
2024-07-27 15:04:21 +00:00
|
|
|
restart: unless-stopped
|
2023-01-04 17:58:54 +00:00
|
|
|
ports:
|
|
|
|
- 4004:4004
|
2024-11-11 12:20:10 +00:00
|
|
|
fulltext:
|
|
|
|
image: hardcoreeng/fulltext
|
|
|
|
extra_hosts:
|
2025-02-24 06:12:19 +00:00
|
|
|
- 'huly.local:host-gateway'
|
2024-11-11 12:20:10 +00:00
|
|
|
restart: unless-stopped
|
|
|
|
links:
|
|
|
|
- elastic
|
|
|
|
- mongodb
|
|
|
|
ports:
|
|
|
|
- 4700:4700
|
|
|
|
environment:
|
|
|
|
- SERVER_SECRET=secret
|
|
|
|
- DB_URL=${MONGO_URL}
|
2025-02-24 06:12:19 +00:00
|
|
|
- FULLTEXT_DB_URL=http://huly.local:9200
|
2024-11-11 12:20:10 +00:00
|
|
|
- ELASTIC_INDEX_NAME=local_storage_index
|
|
|
|
- STORAGE_CONFIG=${STORAGE_CONFIG}
|
2025-02-24 06:12:19 +00:00
|
|
|
- STATS_URL=http://huly.local:4900
|
|
|
|
- REKONI_URL=http://huly.local:4004
|
|
|
|
- ACCOUNTS_URL=http://huly.local:3000
|
2024-11-14 13:00:21 +00:00
|
|
|
fulltext_cockroach:
|
|
|
|
image: hardcoreeng/fulltext
|
|
|
|
extra_hosts:
|
2025-02-24 06:12:19 +00:00
|
|
|
- 'huly.local:host-gateway'
|
2024-11-14 13:00:21 +00:00
|
|
|
restart: unless-stopped
|
|
|
|
links:
|
|
|
|
- elastic
|
2024-12-12 17:20:35 +00:00
|
|
|
- cockroach
|
2024-11-14 13:00:21 +00:00
|
|
|
ports:
|
|
|
|
- 4702:4702
|
|
|
|
environment:
|
|
|
|
- PORT=4702
|
|
|
|
- SERVER_SECRET=secret
|
2025-02-24 06:12:19 +00:00
|
|
|
- DB_URL=postgresql://root@huly.local:26257/defaultdb?sslmode=disable
|
|
|
|
- FULLTEXT_DB_URL=http://huly.local:9200
|
2024-11-14 13:00:21 +00:00
|
|
|
- ELASTIC_INDEX_NAME=local_storage_index
|
|
|
|
- STORAGE_CONFIG=${STORAGE_CONFIG}
|
2025-02-24 06:12:19 +00:00
|
|
|
- STATS_URL=http://huly.local:4900
|
|
|
|
- REKONI_URL=http://huly.local:4004
|
|
|
|
- ACCOUNTS_URL=http://huly.local:3000
|
2024-07-27 15:04:21 +00:00
|
|
|
print:
|
2024-07-29 08:48:15 +00:00
|
|
|
image: hardcoreeng/print
|
2024-09-16 04:31:27 +00:00
|
|
|
extra_hosts:
|
2025-02-24 06:12:19 +00:00
|
|
|
- 'huly.local:host-gateway'
|
2024-07-27 15:04:21 +00:00
|
|
|
restart: unless-stopped
|
|
|
|
ports:
|
|
|
|
- 4005:4005
|
|
|
|
environment:
|
|
|
|
- SECRET=secret
|
|
|
|
- STORAGE_CONFIG=${STORAGE_CONFIG}
|
2025-02-24 06:12:19 +00:00
|
|
|
- STATS_URL=http://huly.local:4900
|
|
|
|
- ACCOUNTS_URL=http://huly.local:3000
|
2024-07-27 15:04:21 +00:00
|
|
|
sign:
|
2024-07-29 08:48:15 +00:00
|
|
|
image: hardcoreeng/sign
|
2024-09-02 11:31:37 +00:00
|
|
|
extra_hosts:
|
2025-02-24 06:12:19 +00:00
|
|
|
- 'huly.local:host-gateway'
|
2023-01-24 13:42:47 +00:00
|
|
|
restart: unless-stopped
|
2024-07-27 15:04:21 +00:00
|
|
|
ports:
|
|
|
|
- 4006:4006
|
|
|
|
volumes:
|
|
|
|
- ../services/sign/pod-sign/debug/certificate.p12:/var/cfg/certificate.p12
|
|
|
|
- ../services/sign/pod-sign/debug/branding.json:/var/cfg/branding.json
|
|
|
|
environment:
|
|
|
|
- SECRET=secret
|
|
|
|
- MINIO_ENDPOINT=minio
|
|
|
|
- MINIO_ACCESS_KEY=minioadmin
|
2025-02-24 06:12:19 +00:00
|
|
|
- ACCOUNTS_URL=http://huly.local:3000
|
2024-07-27 15:04:21 +00:00
|
|
|
- MINIO_SECRET_KEY=minioadmin
|
|
|
|
- CERTIFICATE_PATH=/var/cfg/certificate.p12
|
2024-12-12 17:20:35 +00:00
|
|
|
- SERVICE_ID=sign-service
|
2024-07-27 15:04:21 +00:00
|
|
|
- BRANDING_PATH=/var/cfg/branding.json
|
2025-02-24 06:12:19 +00:00
|
|
|
- STATS_URL=http://huly.local:4900
|
2025-02-11 17:01:18 +00:00
|
|
|
# analytics:
|
|
|
|
# image: hardcoreeng/analytics-collector
|
|
|
|
# extra_hosts:
|
2025-02-24 06:12:19 +00:00
|
|
|
# - 'huly.local:host-gateway'
|
2025-02-11 17:01:18 +00:00
|
|
|
# restart: unless-stopped
|
|
|
|
# ports:
|
|
|
|
# - 4017:4017
|
|
|
|
# environment:
|
|
|
|
# - SECRET=secret
|
|
|
|
# - PORT=4017
|
|
|
|
# - MONGO_URL=${MONGO_URL}
|
|
|
|
# - 'MONGO_OPTIONS={"appName":"analytics","maxPoolSize":1}'
|
|
|
|
# - SERVICE_ID=analytics-collector-service
|
2025-02-24 06:12:19 +00:00
|
|
|
# - ACCOUNTS_URL=http://huly.local:3000
|
|
|
|
# - STATS_URL=http://huly.local:4900
|
2024-08-06 14:40:13 +00:00
|
|
|
aiBot:
|
|
|
|
image: hardcoreeng/ai-bot
|
2024-09-19 15:35:18 +00:00
|
|
|
ports:
|
|
|
|
- 4010:4010
|
2024-09-02 11:31:37 +00:00
|
|
|
extra_hosts:
|
2025-02-24 06:12:19 +00:00
|
|
|
- 'huly.local:host-gateway'
|
2024-08-06 14:40:13 +00:00
|
|
|
restart: unless-stopped
|
|
|
|
environment:
|
|
|
|
- SERVER_SECRET=secret
|
2024-08-26 16:15:56 +00:00
|
|
|
- MONGO_URL=${MONGO_URL}
|
2025-02-24 06:12:19 +00:00
|
|
|
- ACCOUNTS_URL=http://huly.local:3000
|
2025-01-31 11:12:49 +00:00
|
|
|
- STORAGE_CONFIG=${STORAGE_CONFIG}
|
2024-08-06 14:40:13 +00:00
|
|
|
- FIRST_NAME=Jolie
|
|
|
|
- LAST_NAME=AI
|
|
|
|
- PASSWORD=password
|
|
|
|
- AVATAR_PATH=./avatar.png
|
|
|
|
- AVATAR_CONTENT_TYPE=.png
|
2025-02-24 06:12:19 +00:00
|
|
|
- STATS_URL=http://huly.local:4900
|
|
|
|
# - LOVE_ENDPOINT=http://huly.local:8096
|
2024-10-30 08:10:30 +00:00
|
|
|
# - OPENAI_API_KEY=token
|
2024-08-07 13:22:43 +00:00
|
|
|
# telegram-bot:
|
|
|
|
# image: hardcoreeng/telegram-bot
|
2024-09-02 11:31:37 +00:00
|
|
|
# extra_hosts:
|
2025-02-24 06:12:19 +00:00
|
|
|
# - "huly.local:host-gateway"
|
2024-08-07 13:22:43 +00:00
|
|
|
# restart: unless-stopped
|
|
|
|
# environment:
|
|
|
|
# - PORT=4020
|
|
|
|
# - BOT_TOKEN=token
|
2024-08-26 16:15:56 +00:00
|
|
|
# - MONGO_URL=${MONGO_URL}
|
2024-08-07 13:22:43 +00:00
|
|
|
# - MONGO_DB=telegram-bot
|
|
|
|
# - SECRET=secret
|
|
|
|
# - DOMAIN=domain
|
2025-02-24 06:12:19 +00:00
|
|
|
# - ACCOUNTS_URL=http://huly.local:3000
|
2024-08-07 13:22:43 +00:00
|
|
|
# - SERVICE_ID=telegram-bot-service
|
2025-02-24 06:12:19 +00:00
|
|
|
# - STATS_URL=http://huly.local:4900
|
2021-11-22 11:17:10 +00:00
|
|
|
volumes:
|
|
|
|
db:
|
2024-10-09 05:08:27 +00:00
|
|
|
dbpg:
|
2021-11-22 11:17:10 +00:00
|
|
|
files:
|
|
|
|
elastic:
|
2024-11-14 13:00:21 +00:00
|
|
|
cockroach_db:
|