Advertisement
Guest User

Untitled

a guest
Apr 4th, 2017
71
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
YAML 2.04 KB | None | 0 0
  1. version: '2'
  2. services:
  3.   mongo:
  4.     image: mongo:3.2
  5.     volumes:
  6.    - /opt/softbox/dashbox/vmi/data/mongodb:/data/db
  7.     ports:
  8.    - 52018:27027/tcp
  9.     - 53570:28017/tcp
  10.   dashbox:
  11.     image: azukiapp/php-fpm:5.6
  12.     environment:
  13.       DASHBOX_ENV: prod
  14.     volumes:
  15.    - /opt/softbox/dashbox/vmi/dashbox-web/www/app:/var/www/public
  16.     - /opt/softbox/dashbox/vmi/dashbox-web/:/var/tmp/dashbox
  17.     - /opt/softbox/dashbox/vmi/dashbox-web/config:/var/opt/dashbox
  18.     links:
  19.    - postgres:postgres
  20.     - mongo:mongo
  21.     - servico-email:servico-email
  22.     ports:
  23.    - 55952:80/tcp
  24.     labels:
  25.       rap.host: vmi-hml.softbox.com.br
  26.   servico-processador-fila:
  27.     image: thyagoluciano/node
  28.     working_dir: /app
  29.     entrypoint:
  30.    - pm2-docker
  31.     - process.yml
  32.     - --only
  33.     - dashbox-servico-processador-fila
  34.     volumes:
  35.    - /opt/softbox/dashbox/vmi/servico-processador-fila/www/app:/app
  36.     links:
  37.    - mongo:mongo
  38.     - servico-email:servico-email
  39.     ports:
  40.    - 50081:7001/tcp
  41.   servico-importacao:
  42.     image: thyagoluciano/node
  43.     working_dir: /app
  44.     entrypoint:
  45.    - pm2-docker
  46.     - process.yml
  47.     - --only
  48.     - dashbox-servico-importacao
  49.     volumes:
  50.    - /opt/softbox/dashbox/vmi/servico-importacao/www/app:/app
  51.     links:
  52.    - postgres:postgres
  53.     - mongo:mongo
  54.     ports:
  55.    - 59015:3880/tcp
  56.   servico-email:
  57.     image: thyagoluciano/node
  58.     working_dir: /app
  59.     entrypoint:
  60.    - pm2-docker
  61.     - process.yml
  62.     - --only
  63.     - dashbox-servico-email
  64.     volumes:
  65.    - /opt/softbox/dashbox/vmi/servico-email/www/app:/app
  66.     links:
  67.    - postgres:postgres
  68.     - mongo:mongo
  69.     ports:
  70.    - 60160:7000/tcp
  71.   postgres:
  72.     image: postgres
  73.     environment:
  74.      - POSTGRES_USER:'usrvmi'
  75.       - POSTGRES_PASSWORD:'Vm1@@2017'
  76.       - POSTGRES_DB:'vmidb'
  77.     ports:
  78.      - 62917:5432/tcp
  79.     volumes:
  80.    - /opt/softbox/dashbox/vmi/data/postgres:/var/lib/postgresql/data:rw
  81.   sFTP:
  82.     image: atmoz/sftp
  83.     volumes:
  84.    - /vmi-files/arquivos/:/var/ftp
  85.     - 63828:9812/tcp
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement