devcontainer.json 1.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  1. // java8 + android env
  2. // For format details, see https://aka.ms/devcontainer.json. For config options, see the README at:
  3. // https://github.com/microsoft/vscode-dev-containers/tree/v0.233.0/containers/java-8
  4. {
  5. "name": "Java 16",
  6. "image": "jianboy/flutter-dev-container:3.7.7",
  7. // "build": {
  8. // "dockerfile": "Dockerfile",
  9. // "args": {
  10. // // Use the VARIANT arg to pick a Debian OS version: buster, bullseye
  11. // // Use bullseye when running on local arm64/Apple Silicon.
  12. // "VARIANT": "buster",
  13. // // Options
  14. // "INSTALL_MAVEN": "true",
  15. // "INSTALL_GRADLE": "true",
  16. // "NODE_VERSION": "lts/*"
  17. // }
  18. // },
  19. // Set *default* container specific settings.json values on container create.
  20. "settings": {
  21. "java.home": "/docker-java-home",
  22. "java.import.gradle.java.home": "/usr/local/sdkman/candidates/java/current",
  23. "java.configuration.runtimes": [{
  24. "default": true,
  25. "name": "JavaSE-11",
  26. "path": "/usr/local/sdkman/candidates/java/current"
  27. }]
  28. },
  29. // Add the IDs of extensions you want installed when the container is created.
  30. "extensions": [
  31. "vscjava.vscode-java-pack",
  32. "dart-code.dart-code",
  33. "dart-code.flutter"
  34. ],
  35. // Use 'forwardPorts' to make a list of ports inside the container available locally.
  36. // "forwardPorts": [],
  37. // Use 'postCreateCommand' to run commands after the container is created.
  38. // "postCreateCommand": "java -version",
  39. // Comment out to connect as root instead. More info: https://aka.ms/vscode-remote/containers/non-root.
  40. "remoteUser": "vscode",
  41. "features": {
  42. "docker-in-docker": "latest"
  43. }
  44. }