Created
January 10, 2017 20:12
-
-
Save fredericksilva/fe1d33273e935a6d3e6c12dea12a9e44 to your computer and use it in GitHub Desktop.
Docker Emprego Ligado
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# PS: /home/docker/ makes it create the volumes on the remote | |
rabbitmq: | |
container_name: dev_rabbitmq | |
image: rabbitmq:3.5.6-management | |
hostname: rabbitmq | |
ports: | |
- "5672:5672" | |
- "15672:15672" | |
volumes: | |
- /data/rabbitmq:/var/lib/rabbitmq | |
redis: | |
container_name: dev_redis | |
image: redis:2.8.19 | |
command: redis-server --appendonly yes | |
ports: | |
- "6379:6379" | |
volumes: | |
- /data/redis:/data | |
postgres: | |
container_name: dev_postgres | |
image: postgres:9.4.2 | |
ports: | |
- "5434:5432" | |
volumes: | |
- /data/postgresql:/var/lib/postgresql/data | |
postgres_postgis: | |
container_name: dev_postgres_postgis | |
image: mdillon/postgis:9.4 | |
ports: | |
- "5433:5432" | |
volumes: | |
- /data/postgresql_postgis:/var/lib/postgresql/data | |
elasticsearch: | |
container_name: dev_elasticsearch | |
image: elasticsearch:1.4.2 | |
ports: | |
- "9200:9200" | |
- "9300:9300" | |
volumes: | |
- /data/elasticsearch:/usr/share/elasticsearch/data | |
mongo: | |
"~/Documents/frontend/dev-environment/docker-compose.yml" 69L, 1337C |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
127.0.0.1 localhost
255.255.255.255 broadcasthost
::1 localhost
127.0.0.1 docker
"/etc/hosts" [readonly] 12L, 233C