This file contains 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
docker exec -it <container_name> cat /sys/class/net/eth0/iflink | |
# 8 | |
ip link | grep 8 | |
# 8: veth0561247@if7: <BROADCAST,MULTICAST,UP,LOWER_UP> mtu 1500 qdisc noqueue master br-6726433a4ff3 state UP mode DEFAULT group default |
This file contains 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
tests:integration: | |
stage: test | |
image: hmajid2301/dind-docker-compose | |
script: | |
- sh tests/run_integration_tests.sh; | |
after_script: | |
- docker-compose -f docker-compose.test.yml down |
This file contains 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
{ | |
"name": "Flask", | |
"cwd": "${workspaceRoot}", | |
"type": "python", | |
"request": "launch", | |
"module": "flask", | |
"env": { | |
"FLASK_APP": "app.py", | |
"FLASK_ENV": "development", | |
"FLASK_DEBUG": "1" |
This file contains 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" | |
services: | |
bind: | |
image: sameersbn/bind:latest | |
dns: 127.0.0.1 | |
expose: | |
- 53/udp | |
- 53/tcp | |
ports: |
This file contains 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
{"lastUpload":"2021-04-02T12:17:30.242Z","extensionVersion":"v3.4.3"} |
This file contains 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
# To list all (VirtualBox) VMs | |
VBoxManage list vms | |
# "Google Pixel - 8.0 - API 26 - 1080x1920" {66bd956b-2a51-40dc-a448-509840a43b9b} | |
# To launch an emulator | |
<path_to_genymotion_folder>/player --vm-name <VM Name> & | |
~/genymotion/player --vm-name "Google Pixel - 8.0 - API 26 - 1080x1920" & |