mirror of
https://github.com/clearml/clearml-server
synced 2025-01-31 10:56:48 +00:00
82 lines
2.3 KiB
YAML
82 lines
2.3 KiB
YAML
version: "3.6"
|
|
services:
|
|
trainsserver:
|
|
command:
|
|
- -c
|
|
- "echo \"#!/bin/bash\" > /opt/trains/all.sh && echo \"/opt/trains/wrapper.sh webserver&\" >> /opt/trains/all.sh && echo \"/opt/trains/wrapper.sh fileserver&\" >> /opt/trains/all.sh && echo \"/opt/trains/wrapper.sh apiserver\" >> /opt/trains/all.sh && cat /opt/trains/all.sh && chmod +x /opt/trains/all.sh && /opt/trains/all.sh"
|
|
entrypoint: /bin/bash
|
|
container_name: trains-server
|
|
image: allegroai/trains:latest
|
|
ports:
|
|
- 8008:8008
|
|
- 8080:80
|
|
- 8081:8081
|
|
restart: always
|
|
volumes:
|
|
- type: bind
|
|
source: /opt/trains/logs
|
|
target: /var/log/trains
|
|
- type: bind
|
|
source: /opt/trains/data/fileserver
|
|
target: /mnt/fileserver
|
|
links:
|
|
- mongo:mongo
|
|
- elasticsearch:elasticsearch
|
|
environment:
|
|
ELASTIC_SERVICE_SERVICE_HOST: elasticsearch
|
|
MONGODB_SERVICE_SERVICE_HOST: mongo
|
|
networks:
|
|
- backend
|
|
elasticsearch:
|
|
networks:
|
|
- backend
|
|
container_name: trains-elastic
|
|
environment:
|
|
ES_JAVA_OPTS: -Xms2g -Xmx2g
|
|
bootstrap.memory_lock: "true"
|
|
cluster.name: trains
|
|
cluster.routing.allocation.node_initial_primaries_recoveries: "500"
|
|
discovery.zen.minimum_master_nodes: "1"
|
|
http.compression_level: "7"
|
|
node.ingest: "true"
|
|
node.name: trains
|
|
reindex.remote.whitelist: '*.*'
|
|
script.inline: "true"
|
|
script.painless.regex.enabled: "true"
|
|
script.update: "true"
|
|
thread_pool.bulk.queue_size: "2000"
|
|
thread_pool.search.queue_size: "10000"
|
|
xpack.monitoring.enabled: "false"
|
|
xpack.security.enabled: "false"
|
|
ulimits:
|
|
memlock:
|
|
soft: -1
|
|
hard: -1
|
|
image: docker.elastic.co/elasticsearch/elasticsearch:5.6.16
|
|
restart: always
|
|
volumes:
|
|
- type: bind
|
|
source: /opt/trains/data/elastic
|
|
target: /usr/share/elasticsearch/data
|
|
ports:
|
|
- "9200:9200"
|
|
mongo:
|
|
networks:
|
|
- backend
|
|
container_name: trains-mongo
|
|
image: mongo:3.6.5
|
|
restart: always
|
|
volumes:
|
|
- type: bind
|
|
source: /opt/trains/data/mongo/db
|
|
target: /data/db
|
|
- type: bind
|
|
source: /opt/trains/data/mongo/configdb
|
|
target: /data/configdb
|
|
ports:
|
|
- "27017:27017"
|
|
|
|
networks:
|
|
backend:
|
|
driver: bridge
|