This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
* Given the package.json of a repo and the webpack externals, construct an object of | |
* vendor chunks specifically for each scoped package (e.g. `@babel`) | |
* @param {Array} externals the list of packages external to the webpack build | |
* @param {Object} pkg the package.json for the current repository | |
* @returns {Object} An object of the form: | |
* | |
* @example | |
* ```javascript | |
* { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
version: '2' | |
services: | |
plex: | |
image: linuxserver/plex | |
container_name: plex | |
volumes: | |
- /path/to/plex/config:/config | |
- /path/to/plex/Movies:/data/movies | |
- /path/to/plex/Shows:/data/tvshows | |
- /path/to/plex/transcode:/data/transcode |