Merge pull request #4668 from portainer/feat-4667-custom-portainer-folder

chore(dev-build): custom portainer data folder
pull/5028/head
wheresolivia 4 years ago committed by GitHub
commit cafcebe27e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -6,7 +6,7 @@ const webpackProdConfig = require('./webpack/webpack.production');
var arch = os.arch(); var arch = os.arch();
if (arch === 'x64') arch = 'amd64'; if (arch === 'x64') arch = 'amd64';
var portainer_data = '/tmp/portainer'; var portainer_data = '${PORTAINER_DATA:-/tmp/portainer}';
module.exports = function (grunt) { module.exports = function (grunt) {
loadGruntTasks(grunt, { loadGruntTasks(grunt, {

Loading…
Cancel
Save