水平扩展&负载均衡
===
### 启动多个服务
`docker-compose up --scale web=3 -d` 启动compose web服务数量为3
负载均衡我们这里用的时haproxy
```
lb:
image: dockercloud/haproxy
links:
- web #需要负载的服务名称
ports:
- 8080:80
volumes:
- /var/run/docker.sock:/var/rin/docker.sock
```