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
| #!/bin/bash | |
| # How to use | |
| # =========== | |
| # chmod +x ./search_usages.sh | |
| # ./search_usages.sh | |
| # | |
| # Description | |
| # ============ | |
| # This script reads a list of table names from a text file and searches the |
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' | |
| volumes: | |
| dockovpn: | |
| services: | |
| dockovpn: | |
| image: alekslitvinenk/openvpn | |
| container_name: dockovpn | |
| restart: always |
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.8" | |
| # Read More https://www.bmc.com/blogs/mongodb-docker-container/ | |
| services: | |
| mongodb: | |
| image: mongo | |
| container_name: mongodb | |
| environment: | |
| - MONGO_INITDB_ROOT_USERNAME=root | |
| - MONGO_INITDB_ROOT_PASSWORD=pass12345 | |
| volumes: |