Last active
May 6, 2019 13:52
-
-
Save renant/bb140fcc1a05c351c64aa85deeab39d8 to your computer and use it in GitHub Desktop.
Docker compose com ambientes que gosto de utilizar
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
version: "3.4" | |
services: | |
sqlserver: | |
image: mcr.microsoft.com/mssql/server:2017-CU8-ubuntu | |
restart: always | |
environment: | |
- ACCEPT_EULA=Y | |
- SA_PASSWORD=123Aa321 | |
- MSSQL_COLLATION=Latin1_General_CI_AS | |
ports: | |
- "1433:1433" | |
nosql.db: | |
image: mongo | |
restart: always | |
ports: | |
- "27017:27017" | |
postgresserver: | |
image: kartoza/postgis | |
restart: always | |
environment: | |
POSTGRES_USER: admin | |
POSTGRES_PASSWORD: admin | |
volumes: | |
- /var/lib/postgresql/data | |
ports: | |
- "5432:5432" | |
pgadmin: | |
image: dpage/pgadmin4 | |
restart: always | |
ports: | |
- 4500:80 | |
environment: | |
PGADMIN_DEFAULT_EMAIL: admin@admin | |
PGADMIN_DEFAULT_PASSWORD: admin | |
noderedis: | |
image: redis:alpine | |
restart: always | |
ports: | |
- 6379:6379 | |
volumes: | |
- /var/lib/redis/data | |
rabbitmq: | |
image: rabbitmq:3-management | |
restart: always | |
ports: | |
- 15672:15672 | |
- 5672:5672 | |
- 25676:25676 | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment