mirror of
https://github.com/outbackdingo/firezone.git
synced 2026-01-27 18:18:55 +00:00
- Add some packages to help with development (jq, nftables) - Clean up env locale and install en_US - Fix init script failure on *nix - Add some ruby vscode extension
31 lines
1.1 KiB
JSON
31 lines
1.1 KiB
JSON
// For format details, see https://aka.ms/devcontainer.json. For config options, see the README at:
|
|
// https://github.com/microsoft/vscode-dev-containers/tree/v0.231.6/containers/elixir-phoenix-postgres
|
|
{
|
|
"name": "Firezone",
|
|
"dockerComposeFile": "docker-compose.yml",
|
|
"service": "elixir",
|
|
"workspaceFolder": "/workspace",
|
|
|
|
// Set *default* container specific settings.json values on container create.
|
|
"settings": {},
|
|
|
|
"initializeCommand": [".devcontainer/init"],
|
|
|
|
// Add the IDs of extensions you want installed when the container is created.
|
|
"extensions": [
|
|
"jakebecker.elixir-ls",
|
|
"phoenixframework.phoenix",
|
|
"rebornix.ruby"
|
|
],
|
|
|
|
// Use 'forwardPorts' to make a list of ports inside the container available locally.
|
|
// This can be used to network with other containers or with the host.
|
|
"forwardPorts": [4000, 5432],
|
|
|
|
// Use 'postCreateCommand' to run commands after the container is created.
|
|
// "postCreateCommand": "mix deps.get"
|
|
|
|
// Uncomment to connect as a non-root user. See https://aka.ms/vscode-remote/containers/non-root.
|
|
"remoteUser": "vscode"
|
|
}
|