Skip to content

Commit

Permalink
names fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
lamba92 committed Jun 7, 2020
1 parent c4bce43 commit 3908840
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
4 changes: 2 additions & 2 deletions buildSrc/src/main/kotlin/MaadbApplicationPlugin.kt
Original file line number Diff line number Diff line change
Expand Up @@ -55,8 +55,8 @@ class MaadbApplicationPlugin : Plugin<Project> {

val copyDockerfile by creating(Copy::class) {
group = "docker"
from(getResource(if ("mongo" in project.name) "Dockerfile-mongo" else "Dockerfile"))
.rename { "Dockerfile" }
from(getResource(if (project.name == "supervisor") "Dockerfile-mongo" else "Dockerfile"))
.rename { "Dockerfile" }
into(dockerBuildFolder)
}

Expand Down
3 changes: 3 additions & 0 deletions docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -217,6 +217,9 @@ services:
api-gateway:
image: nginx
command: [nginx-debug, '-g', 'daemon off;']
depends_on:
- sql-analytics-server
- nosql-analytics-server
networks:
- mongo-net
- postgres-net
Expand Down

0 comments on commit 3908840

Please sign in to comment.