// 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.5/containers/elixir-phoenix-postgres { "name": "Elixir/Phoenix", "dockerComposeFile": "docker-compose.yml", "service": "elixir", "workspaceFolder": "/workspace", // Set *default* container specific settings.json values on container create. "settings": {}, // Add the IDs of extensions you want installed when the container is created. "extensions": [ ], // 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, 4001, 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" }