Advertisement
yoesoff

envs

Apr 9th, 2020
1,638
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Bash 0.95 KB | None | 0 0
  1. IP: 5.189.128.140
  2.  
  3. MySQL
  4. - MYSQL_ROOT_PASSWORD=mysqldb-password123
  5. - MYSQL_USER=mysqldb123
  6. - MYSQL_PASSWORD=mysqldb-password123
  7. - MYSQL_DATABASE=mysqldb123
  8. - Port "3332"
  9.  
  10. MariaDB
  11. - MYSQL_ROOT_PASSWORD=mariadb-password123
  12. - MYSQL_USER=mariadb123
  13. - MYSQL_PASSWORD=mariadb-password123
  14. - MYSQL_DATABASE=mariadb123
  15. - Port "3333"
  16.  
  17. Postgres
  18. - Username / Pass : postgres / postgres
  19. - Port "3331"
  20.  
  21. Oracle 11g
  22. ports:
  23.     - 1521:1521
  24.     - 5500:5500
  25.     - 7780:8080
  26.  
  27. Adminer
  28. Port "8883"
  29. servers:
  30. - ysf_postgres
  31. - ysf_mysql
  32. - ysf_mariadb
  33.  
  34. Redis
  35. ports "3334"
  36.  
  37. MongoDB
  38. - MONGODB_ROOT_PASSWORD=password123
  39. - ALLOW_EMPTY_PASSWORD=yes
  40. - MONGODB_SYSTEM_LOG_VERBOSITY=3
  41. - MONGODB_USERNAME=my_mongodb_user
  42. - MONGODB_PASSWORD=password123
  43. - MONGODB_DATABASE=my_mongodb_database
  44. - Port "27017"
  45.  
  46. Elastic Search
  47. Ports (standar)
  48.   - '9200'
  49.   - '9300'
  50.  
  51. Kafka
  52. - 9092
  53. - Zookeeper: 2181
  54.  
  55. RabbitMQ
  56. ports:
  57. - '4369'
  58. - '5672'
  59. - '25672'
  60. - '15672'
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement