12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849 |
- version: "2.0"
- services:
- base:
- image: fd3-base
- build:
- context: ./base
- ports:
- - "8000:8000"
- links:
- - mysql:db
- environment:
- VIRTUAL_HOST: base.fd3.flowdat.com
- ftth:
- image: fd3-ftth
- build:
- context: ./ftth
- links:
- - mysql:db
- - base:base
- - amqp:amqp
- ports:
- - "8001:8000"
- environment:
- VIRTUAL_HOST: ftth.fd3.flowdat.com
- volumes:
- - ./ftth/:/opt/ftth/
-
- mysql:
- ports:
- - 3306:3306/tcp
- environment:
- MYSQL_ROOT_PASSWORD: 235r2342gtfsw
- volumes:
- - ./mysql/:/var/lib/mysql/
- labels:
- io.rancher.service.hash: ff5c1be5e84f2419adf14e165573a7c76c6d58fb
- image: mysql:latest
- amqp:
- image: rabbitmq
- nginx-proxy:
- image: jwilder/nginx-proxy
- container_name: nginx-proxy
- ports:
- - "80:80"
- volumes:
- - /var/run/docker.sock:/tmp/docker.sock:ro
|