21 lines
373 B
YAML
21 lines
373 B
YAML
|
version: '3'
|
||
|
|
||
|
services:
|
||
|
redis.data:
|
||
|
ports:
|
||
|
- "6379:6379"
|
||
|
rabbitmq:
|
||
|
ports:
|
||
|
- "15672:15672"
|
||
|
- "5672:5672"
|
||
|
sql.data:
|
||
|
environment:
|
||
|
- SA_PASSWORD=Pass@word
|
||
|
- ACCEPT_EULA=Y
|
||
|
ports:
|
||
|
- "5433:1433"
|
||
|
nosql.data:
|
||
|
ports:
|
||
|
- "27017:27017" # Important: In a production environment your should remove the external por
|
||
|
|