Skip to content

Commit

Permalink
Merge pull request #206 from kuzzleio/chore/services-compose
Browse files Browse the repository at this point in the history
chore: update the generated Compose files
  • Loading branch information
rolljee committed Jun 4, 2024
2 parents 937c921 + 605931a commit de9338c
Show file tree
Hide file tree
Showing 4 changed files with 1 addition and 9 deletions.
2 changes: 1 addition & 1 deletion features/InstanceLogs.feature
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,4 @@ Feature: Instance logs
Scenario: Show logs of specified kuzzle instance
When I run the command "instance:logs" with flags:
| --instance | "kuzzle" |
Then I should match stdout with "Kuzzle 2.[0-9]+.[0-9]+ is ready"
Then I should match stdout with "Kuzzle 2.[0-9]+.[0-9]+(-\w+.[0-9]+)? is ready"
2 changes: 0 additions & 2 deletions features/docker/docker-compose.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,3 @@
version: "3.4"

services:
kuzzle:
image: kuzzleio/kuzzle:2
Expand Down
2 changes: 0 additions & 2 deletions src/commands/app/start-services.ts
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,6 @@ import { execute } from "../../support/execute";
import { checkPrerequisites } from "../../support/docker/checkPrerequisites";

const kuzzleServicesFile = `
version: '3'
services:
redis:
image: redis:5
Expand Down
4 changes: 0 additions & 4 deletions src/commands/instance/spawn.ts
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,6 @@ const MIN_MAX_MAP_COUNT = 262144;
const MIN_DOCO_VERSION = "2.0.0";

const kuzzleStackV1 = (increment: number): string => `
version: '3'
services:
kuzzle:
image: kuzzleio/kuzzle:1
Expand Down Expand Up @@ -53,8 +51,6 @@ services:
`;

const kuzzleStackV2 = (increment: number): string => `
version: '3'
services:
kuzzle:
image: kuzzleio/kuzzle:2
Expand Down

0 comments on commit de9338c

Please sign in to comment.