Skip to content

Commit

Permalink
Update setup.js
Browse files Browse the repository at this point in the history
  • Loading branch information
InfinityDevTech authored Aug 12, 2024
1 parent b3d752a commit b115eb3
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/setup/setup.js
Original file line number Diff line number Diff line change
Expand Up @@ -157,9 +157,9 @@ module.exports.commands = async function Commands(grafanaApiUrl) {
: ''}`);

const commands = [
{ command: `docker-compose down ${argv.removeVolumes ? '--volumes' : ''} --remove-orphans`, name: 'docker-compose down' },
{ command: 'docker-compose build --no-cache', name: 'docker-compose build' },
{ command: 'docker-compose up -d', name: 'docker-compose up' },
{ command: `docker compose down ${argv.removeVolumes ? '--volumes' : ''} --remove-orphans`, name: 'docker-compose down' },
{ command: 'docker compose build --no-cache', name: 'docker-compose build' },
{ command: 'docker compose up -d', name: 'docker-compose up' },
];

console.log('\r\nExecuting start commands:');
Expand Down

0 comments on commit b115eb3

Please sign in to comment.