You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
46 lines
885 B
46 lines
885 B
mysql:
|
|
image: mysql
|
|
container_name: exmap-mysql
|
|
ports:
|
|
- 3308:3306
|
|
environment:
|
|
- MYSQL_ROOT_PASSWORD=root
|
|
- MYSQL_DATABASE=expomap
|
|
volumes:
|
|
- d:/Projects/expomap.ru/temp/db:/var/lib/mysql
|
|
- d:/Projects/expomap.ru/temp/mysql-conf:/etc/mysql/conf.d
|
|
|
|
redis:
|
|
image: redis
|
|
container_name: exmap-redis
|
|
ports:
|
|
- 6380:6379
|
|
volumes:
|
|
- d:/Projects/expomap.ru/temp/redis:/data
|
|
|
|
solr:
|
|
image: solr:5
|
|
container_name: exmap-solr
|
|
ports:
|
|
- 8983:8983
|
|
|
|
elastic:
|
|
image: elasticsearch:2.4.1
|
|
container_name: exmap-elastic
|
|
ports:
|
|
- 5601:5601
|
|
- 9200:9200
|
|
- 9300:9300
|
|
- 5044:5044
|
|
- 5000:5000
|
|
|
|
web:
|
|
image: expomap/staging:python
|
|
container_name: exmap-web
|
|
command: python /code/manage.py runserver 0.0.0.0:8000
|
|
ports:
|
|
- "8060:8000"
|
|
links:
|
|
- mysql:exmap-mysql
|
|
- redis:exmap-redis
|
|
- elastic:exmap-elastic
|
|
|