devcontainer.json 1.1 KB

123456789101112131415161718192021222324252627282930
  1. // For format details, see https://aka.ms/devcontainer.json. For config options, see the
  2. // README at: https://github.com/devcontainers/templates/tree/main/src/java
  3. {
  4. "name": "Java",
  5. // Or use a Dockerfile or Docker Compose file. More info: https://containers.dev/guide/dockerfile
  6. "image": "mcr.microsoft.com/devcontainers/java:0-17",
  7. "features": {
  8. "ghcr.io/devcontainers/features/java:1": {
  9. "version": "none",
  10. "installMaven": "false",
  11. "installGradle": "true"
  12. },
  13. "ghcr.io/akhildevelops/devcontainer-features/android-cli:0": {},
  14. "ghcr.io/jarrodcolburn/features/android-sdk:0": {},
  15. "ghcr.io/jarrodcolburn/features/flutter-sdk:0": {}
  16. }
  17. // Use 'forwardPorts' to make a list of ports inside the container available locally.
  18. // "forwardPorts": [],
  19. // Use 'postCreateCommand' to run commands after the container is created.
  20. // "postCreateCommand": "java -version",
  21. // Configure tool-specific properties.
  22. // "customizations": {},
  23. // Uncomment to connect as root instead. More info: https://aka.ms/dev-containers-non-root.
  24. // "remoteUser": "root"
  25. }