mirror of
https://github.com/tfausak/witch.git
synced 2024-11-22 14:58:13 +03:00
22 lines
447 B
YAML
22 lines
447 B
YAML
{
|
|
"services": {
|
|
"devcontainer": {
|
|
"command": "sh -c 'while sleep 1; do :; done'",
|
|
"image": "public.ecr.aws/acilearning/haskell:9.4.4",
|
|
"init": true,
|
|
"volumes": [
|
|
".:/workspaces/witch",
|
|
"cabal:/home/haskell/.cabal",
|
|
"cabal-store:/cabal-store"
|
|
],
|
|
"working_dir": "/workspaces/witch"
|
|
}
|
|
},
|
|
"volumes": {
|
|
"cabal": null,
|
|
"cabal-store": {
|
|
"external": true
|
|
}
|
|
}
|
|
}
|