Skip to content

Commit

Permalink
Merge pull request #7 from InfinityDevTech/patch-1
Browse files Browse the repository at this point in the history
  • Loading branch information
pieterbrandsen authored Aug 12, 2024
2 parents b3d752a + b115eb3 commit a4e18bf
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 a4e18bf

Please sign in to comment.