Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 10 additions & 2 deletions .devcontainer/devcontainer.json
Original file line number Diff line number Diff line change
Expand Up @@ -50,10 +50,18 @@
// "shutdownAction": "none",

// Uncomment the next line to run commands after the container is created.
"postCreateCommand": "cat /etc/os-release"
"postCreateCommand": "cat /etc/os-release",

// Configure tool-specific properties.
// "customizations": {},
"customizations": {
"vscode": {
"extensions": [
"ms-python.python",
"ms-vscode.cpptools",
"esbenp.prettier-vscode",
]
}
}

// Uncomment to connect as an existing user other than the container default. More info: https://aka.ms/dev-containers-non-root.
// "remoteUser": "devcontainer"
Expand Down
4 changes: 2 additions & 2 deletions portainer-compose.yml
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
version: '3.8'

services:

# Building and testing environment
app:
build:
context: .
dockerfile: Dockerfile
image: ghcr.io/growlf/toolbox:testing
image: ghcr.io/growlf/toolbox:latest
stdin_open: true
tty: true
command: ["/bin/zsh"]
Expand Down