// For format details, see https://aka.ms/devcontainer.json. For config options, see the // README at: https://github.com/devcontainers/templates/tree/main/src/ruby { "name": "example", "dockerComposeFile": "compose.yaml", "service": "rails-app", "workspaceFolder": "/workspaces/${localWorkspaceFolderBasename}", // Features to add to the dev container. More info: https://containers.dev/features. "features": { "ghcr.io/devcontainers/features/github-cli:1": {}, "ghcr.io/rails/devcontainer/features/activestorage": {}, "ghcr.io/devcontainers/features/node:1": {}, "ghcr.io/devcontainers/features/docker-outside-of-docker:1": {}, "ghcr.io/rails/devcontainer/features/postgres-client": {} }, "containerEnv": { "KAMAL_REGISTRY_PASSWORD": "$KAMAL_REGISTRY_PASSWORD", "DB_HOST": "postgres" }, // Use 'forwardPorts' to make a list of ports inside the container available locally. "forwardPorts": [3000, 5432], // Configure tool-specific properties. // "customizations": {}, // Uncomment to connect as root instead. More info: https://aka.ms/dev-containers-non-root. // "remoteUser": "root", // Use 'postCreateCommand' to run commands after the container is created. "postCreateCommand": "bin/setup --skip-server" }