Advertisement
mahmudkuet

Vinndo server docker

Apr 11th, 2018
154
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
YAML 0.74 KB | None | 0 0
  1. version: '3'
  2.  
  3. services:
  4.   balancer:
  5.     image: mahmudkuet11/vinndo_balancer
  6.     tty: true
  7.     ports:
  8.      - "80"
  9.  
  10.   web01:
  11.     image: mahmudkuet11/vinndo_web
  12.     tty: true
  13.     ports:
  14.      - "80"
  15.     volumes:
  16.      - ./code:/var/www/vinndo.com
  17.  
  18.   web02:
  19.     image: mahmudkuet11/vinndo_web
  20.     tty: true
  21.     ports:
  22.      - "80"
  23.     volumes:
  24.      - ./code:/var/www/vinndo.com
  25.  
  26.   mysql:
  27.     image: mahmudkuet11/vinndo_mysql
  28.     tty: true
  29.     volumes:
  30.      - mysql-volume:/var/lib/mysql
  31.     ports:
  32.      - "3306"
  33.  
  34.   redis:
  35.     image: redis
  36.     volumes:
  37.       - redis-volume:/data
  38.     ports:
  39.      - "6379"
  40.   memcached:
  41.     image: memcached
  42.     ports:
  43.       - "11211"
  44.  
  45.  
  46. volumes:
  47.   mysql-volume:
  48.  redis-volume:
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement