Skip to content

Commit

Permalink
Fixed docker-compose down (#1451)
Browse files Browse the repository at this point in the history
When running `make stop-service` I was getting:

```
make stop-service
docker compose down
service "oci-collector" depends on undefined service guac-graphql: invalid compose project
make: *** [stop-service] Error 15
```

This is because the guac-graphql was removed from, 8336525.

Signed-off-by: nathannaveen <[email protected]>
  • Loading branch information
nathannaveen authored Nov 2, 2023
1 parent 4e83d90 commit 9faa6de
Showing 1 changed file with 0 additions and 8 deletions.
8 changes: 0 additions & 8 deletions docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -49,8 +49,6 @@ services:
depends_on:
guac-collectsub:
condition: service_healthy
guac-graphql:
condition: service_healthy
volumes:
- ./container_files/guac:/guac:z

Expand All @@ -63,8 +61,6 @@ services:
depends_on:
guac-collectsub:
condition: service_healthy
guac-graphql:
condition: service_healthy
volumes:
- ./container_files/guac:/guac:z

Expand All @@ -79,8 +75,6 @@ services:
depends_on:
guac-collectsub:
condition: service_healthy
guac-graphql:
condition: service_healthy
volumes:
- ./container_files/guac:/guac:z

Expand All @@ -93,8 +87,6 @@ services:
depends_on:
guac-collectsub:
condition: service_healthy
guac-graphql:
condition: service_healthy
volumes:
- ./container_files/guac:/guac:z

Expand Down

0 comments on commit 9faa6de

Please sign in to comment.