You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

39 lines
1.1 KiB

  1. {
  2. "name": "Mastodon",
  3. "dockerComposeFile": "docker-compose.yml",
  4. "service": "app",
  5. "workspaceFolder": "/mastodon",
  6. // Configure tool-specific properties.
  7. "customizations": {
  8. // Configure properties specific to VS Code.
  9. "vscode": {
  10. // Set *default* container specific settings.json values on container create.
  11. "settings": {},
  12. // Add the IDs of extensions you want installed when the container is created.
  13. "extensions": [
  14. "EditorConfig.EditorConfig",
  15. "dbaeumer.vscode-eslint",
  16. "rebornix.Ruby",
  17. "webben.browserslist"
  18. ]
  19. }
  20. },
  21. "features": {
  22. "ghcr.io/devcontainers/features/sshd:1": {
  23. "version": "latest"
  24. }
  25. },
  26. // Use 'forwardPorts' to make a list of ports inside the container available locally.
  27. // This can be used to network with other containers or the host.
  28. "forwardPorts": [3000, 4000],
  29. // Use 'postCreateCommand' to run commands after the container is created.
  30. "postCreateCommand": ".devcontainer/post-create.sh",
  31. // Comment out to connect as root instead. More info: https://aka.ms/vscode-remote/containers/non-root.
  32. "remoteUser": "vscode"
  33. }