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
| #!/usr/bin/env bash | |
| # https://docs.docker.com/install/linux/docker-ce/ubuntu/ | |
| sudo apt-get install -y \ | |
| apt-transport-https \ | |
| ca-certificates \ | |
| curl \ | |
| gnupg-agent \ | |
| software-properties-common |
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
| // 将设置放入此文件中以覆盖默认设置 | |
| { | |
| // 控制字体大小。 | |
| "editor.fontSize": 15, | |
| "editor.fontFamily": "Consolas, 'Courier New', monospace", | |
| "window.openFilesInNewWindow": "on", | |
| "files.eol": "\n", | |
| "workbench.colorCustomizations": { | |
| "tab.activeBackground": "#282c34", | |
| "activityBar.background": "#282c34", |