blob: 66ca64edd188b5b98cc442a7eaa7fa55ba8f3289 [file] [log] [blame]
Rizwan Haider752a48c2016-08-18 15:37:06 -04001xos_db:
2 image: xosproject/xos-postgres
3 expose:
4 - "5432"
5
6xos_bootstrap_ui:
7 image: xosproject/xos
8 # command: sleep 86400
9 command: python /opt/xos/manage.py runserver 0.0.0.0:9998 --insecure --makemigrations
10 environment:
11 - CONFIG_DIR
12 ports:
13 - "9998:9998"
14 links:
15 - xos_db
16 volumes:
17 - ../common/xos_common_config:/opt/xos/xos_configuration/xos_common_config
18 - ../cord-pod/files/xos_vtn_config:/opt/xos/xos_configuration/xos_vtn_config:ro
19 - ../../xos_services:/opt/xos_services
20 - ../../xos/xos/api/utility:/opt/xos/api/utility
21 - ../../xos/xos/core/models:/opt/xos/core/models
22 - ../../xos/xos/core/templatetags:/opt/xos/core/templatetags
23 - ../../xos/xos/core/xoslib/dashboards:/opt/xos/core/xoslib/dashboards
24 - ../../xos/xos/core/xoslib/static/css:/opt/xos/core/xoslib/static/css
25 - ../../xos/xos/core/xoslib/static/images:/opt/xos/core/xoslib/static/images
26 - ../../xos/xos/core/xoslib/static/js:/opt/xos/core/xoslib/static/js
27 - ../../xos/xos/xos:/opt/xos/xos
28 - ../../xos/xos/tosca:/opt/xos/tosca
29 - ../../xos/xos/synchronizers:/opt/xos/synchronizers
30
31xos_synchronizer_onboarding:
32 image: xosproject/xos-synchronizer-onboarding
33 command: bash -c "cd /opt/xos/synchronizers/onboarding; ./run.sh"
34 labels:
35 org.xosproject.kind: synchronizer
36 org.xosproject.target: onboarding
37 links:
38 - xos_db
39 volumes:
40 - /var/run/docker.sock:/var/run/docker.sock
41 - ./key_import:/opt/xos/key_import:ro
42 - ./onboarding-docker-compose:/opt/xos/synchronizers/onboarding/docker-compose
43 - ../../xos_services:/opt/xos_services
44 log_driver: "json-file"
45 log_opt:
46 max-size: "100k"
47 max-file: "5"