##// END OF EJS Templates
fix(elasticsearch): tune options for ES cluster to work properly under docker
fix(elasticsearch): tune options for ES cluster to work properly under docker

File last commit:

r154:575fc35a
r322:1c7c4380
Show More
docker-compose-apps.override.yaml
107 lines | 2.8 KiB | text/x-yaml | YamlLexer
/ templates / docker-compose-apps.override.yaml
version: '3.9'
services:
rhodecode:
deploy:
# set number of instances of services to be spawned on stack start
replicas: 1
environment:
RC_COMPOSE_OVERRIDE: 1
#DB_UPGRADE: 0 # 1 run the DB upgrade, 0 disable db upgrade at startup
#SETUP_APP: 0 # run the application default settings setup, can be turned off after initial run
# volumes:
# # mount the host dir into repo storage path on container
# - $PWD/rc-repos-host:/var/opt/rhodecode_repo_store
# ports:
# # expose port for optional direct port connection
# - "10020:10020"
# healthcheck:
# # disable the healthcheck for faster signal handling that instance is available
# # generally not recommended
# test: ['CMD','true']
labels:
- "traefik.enable=true"
# # Enable http+https endpoints to serve SSL, select just 1 to disable the other
# - "traefik.http.routers.rhodecode.entrypoints=http,https"
vcsserver:
deploy:
# set number of instances of services to be spawned on stack start
replicas: 1
environment:
RC_COMPOSE_OVERRIDE: 1
# volumes:
# # mount the host dir into repo storage path on container
# - $PWD/rc-repos-host:/var/opt/rhodecode_repo_store
# healthcheck:
# # disable the healthcheck for faster signal handling that instance is available
# # generally not recommended
# test: ['CMD','true']
sshd:
deploy:
# set number of instances of services to be spawned on stack start
replicas: 1
environment:
RC_COMPOSE_OVERRIDE: 1
#SSH_BOOTSTRAP: 0 # 1 run the initials key init, 0 disable
# volumes:
# # mount the host dir into repo storage path on container
# - $PWD/rc-repos-host:/var/opt/rhodecode_repo_store
# # mount custom sshd_config for customization of ssh user etc
# - ./custom/ssh/sshd_config:/etc/rhodecode/sshd_config:ro
svn:
deploy:
# set number of instances of services to be spawned on stack start
replicas: 1
environment:
RC_COMPOSE_OVERRIDE: 1
# volumes:
# # mount the host dir into repo storage path on container
# - $PWD/rc-repos-host:/var/opt/rhodecode_repo_store
celery-beat:
deploy:
# set number of instances of services to be spawned on stack start
replicas: 1
environment:
RC_COMPOSE_OVERRIDE: 1
# volumes:
# # mount the host dir into repo storage path on container
# - $PWD/rc-repos-host:/var/opt/rhodecode_repo_store
celery:
deploy:
# set number of instances of services to be spawned on stack start
replicas: 1
environment:
RC_COMPOSE_OVERRIDE: 1
# volumes:
# # mount the host dir into repo storage path on container
# - $PWD/rc-repos-host:/var/opt/rhodecode_repo_store