compose.extend.template.yml 583 B

1234567891011
  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-20
  7. volumes:
  8. - ..:/workspace/growi:delegated
  9. - pnpm-store:/workspace/.pnpm-store
  10. - page_bulk_export_tmp:/tmp/page-bulk-export
  11. tty: true