compose.extend.template.yml 640 B

123456789101112
  1. # A template of the file for extending the primary docker compose configuration.
  2. # To actually use this file, create a `compose.extend.yml` file and copy the contents of this file into it.
  3. services:
  4. pdf-converter:
  5. # enabling devcontainer 'features' was not working for secondary devcontainer (https://github.com/devcontainers/features/issues/1175)
  6. image: mcr.microsoft.com/vscode/devcontainers/javascript-node:1-22
  7. volumes:
  8. - ..:/workspace/growi:delegated
  9. - pnpm-store:/workspace/growi/.pnpm-store
  10. - node_modules:/workspace/growi/node_modules
  11. - page_bulk_export_tmp:/tmp/page-bulk-export
  12. tty: true