Skip to content

Commit

Permalink
Create other containers
Browse files Browse the repository at this point in the history
  • Loading branch information
faucomte97 committed Jan 18, 2024
1 parent ca5b263 commit 4b6ea65
Show file tree
Hide file tree
Showing 4 changed files with 113 additions and 0 deletions.
33 changes: 33 additions & 0 deletions .devcontainer/codeforlife-deploy-appengine/devcontainer.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
{
"name": "codeforlife-deploy-appengine",
"dockerComposeFile": [
"../../docker-compose.yml"
],
"service": "base-service",
"shutdownAction": "none",
"workspaceFolder": "/workspace/codeforlife-deploy-appengine",
"remoteUser": "root",
// "postCreateCommand": "pipenv install --dev",
"features": {
"ghcr.io/devcontainers/features/python:1": {
"version": "3.8"
},
"ghcr.io/devcontainers/features/terraform:1": {
"version": "1.6.6",
"tflint": "none",
"terragrunt": "none"
},
"ghcr.io/dhoeric/features/google-cloud-cli:1": {
"version": "447.0.0"
}
},
"customizations": {
"vscode": {
//TODO: Specify preferred settings and extensions once defined
"settings": {},
"extensions": [
"ms-python.python"
]
}
}
}
23 changes: 23 additions & 0 deletions .devcontainer/codeforlife-package-javascript/devcontainer.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
{
"name": "codeforlife-package-javascript",
"dockerComposeFile": [
"../../docker-compose.yml"
],
"service": "base-service",
"shutdownAction": "none",
"workspaceFolder": "/workspace/codeforlife-package-javascript",
"remoteUser": "root",
"postCreateCommand": "npm install",
"features": {
"ghcr.io/devcontainers/features/node:1": {
"version": "18"
}
},
"customizations": {
"vscode": {
//TODO: Specify preferred settings and extensions once defined
"settings": {},
"extensions": []
}
}
}
27 changes: 27 additions & 0 deletions .devcontainer/codeforlife-package-python/devcontainer.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
{
"name": "codeforlife-package-python",
"dockerComposeFile": [
"../../docker-compose.yml"
],
"service": "base-service",
"shutdownAction": "none",
"workspaceFolder": "/workspace/codeforlife-package-python",
"remoteUser": "root",
"postCreateCommand": "pipenv install --dev",
"features": {
"ghcr.io/devcontainers/features/python:1": {
"version": "3.8"
}
},
"customizations": {
"vscode": {
//TODO: Specify preferred settings and extensions once defined
"settings": {
"python.defaultInterpreterPath": ".venv/bin/python"
},
"extensions": [
"ms-python.python"
]
}
}
}
30 changes: 30 additions & 0 deletions .devcontainer/codeforlife-service-template/devcontainer.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
{
"name": "codeforlife-service-template",
"dockerComposeFile": [
"../../docker-compose.yml"
],
"service": "base-service",
"shutdownAction": "none",
"workspaceFolder": "/workspace/codeforlife-service-template",
"remoteUser": "root",
"postCreateCommand": "./run",
"features": {
"ghcr.io/devcontainers/features/python:1": {
"version": "3.8"
},
"ghcr.io/devcontainers/features/node:1": {
"version": "18"
}
},
"customizations": {
"vscode": {
//TODO: Specify preferred settings and extensions once defined
"settings": {
"python.defaultInterpreterPath": ".venv/bin/python"
},
"extensions": [
"ms-python.python"
]
}
}
}

0 comments on commit 4b6ea65

Please sign in to comment.