Includes Dockerfile, scripts for post-start and post-create configuration, and README instructions for using the environment with .NET and Angular.
13 lines
299 B
Bash
Executable file
13 lines
299 B
Bash
Executable file
#!/usr/bin/env bash
|
|
|
|
set -euo pipefail
|
|
|
|
sudo install -d -m 0775 -o vscode -g vscode \
|
|
/data/db \
|
|
/data/downloads \
|
|
/home/vscode/.nuget \
|
|
/home/vscode/.nuget/NuGet \
|
|
/home/vscode/.nuget/packages \
|
|
/home/vscode/.npm
|
|
|
|
sudo chown -R vscode:vscode /data /home/vscode/.nuget /home/vscode/.npm
|