Skip to content

Commit

Permalink
fixup node lint
Browse files Browse the repository at this point in the history
Signed-off-by: Alex Suraci <alex@dagger.io>
  • Loading branch information
vito committed Jul 18, 2023
1 parent 81bbdab commit b7983d7
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ connect(
.withExposedPort(6379)
.withMountedCache("/data", client.cacheVolume("my-redis"))
.withWorkdir("/data")
.service();
.service()

// create Redis client container
const redisCLI = client
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ connect(
.container()
.from("redis")
.withExposedPort(6379)
.service();
.service()

// create Redis client container
const redisCLI = client
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ connect(
.withEnvVariable("MARIADB_DATABASE", "drupal")
.withEnvVariable("MARIADB_ROOT_PASSWORD", "root")
.withExposedPort(3306)
.service();
.service()

// get Drupal base image
// install additional dependencies
Expand Down

0 comments on commit b7983d7

Please sign in to comment.