Moving things around to make working more streamlined

This commit is contained in:
Gal Szkolnik 2023-07-21 04:45:58 +00:00
parent 324314c628
commit 59ae9c536e
8 changed files with 25 additions and 0 deletions

2
.gitignore vendored Normal file
View File

@ -0,0 +1,2 @@
data
.vscode

23
docker-compose.yml Normal file
View File

@ -0,0 +1,23 @@
version: "3"
services:
pwsh-azure:
image: mcr.microsoft.com/azure-powershell
restart: "no"
entrypoint: "pwsh"
working_dir: /data
volumes:
- ./data:/data
- ./src:/data/src
- ./data/.dotnet:/root/.dotnet
pwsh-msgraph-sdk:
image: mcr.microsoft.com/microsoftgraph/powershell
restart: "no"
entrypoint: "pwsh"
working_dir: /data
volumes:
- ./data:/data
- ./src:/data/src
- ./data/.dotnet:/root/.dotnet