Skip to content

Commit

Permalink
Add missing depends_on to docker-compose.yml (metabrainz#2955)
Browse files Browse the repository at this point in the history
Some development containers had missing container dependencies.
  • Loading branch information
amCap1712 authored Aug 6, 2024
1 parent 2ad5b45 commit 44bdf59
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions docker/docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -85,6 +85,7 @@ services:
- ..:/code/listenbrainz:z
depends_on:
- redis
- lb_db
- rabbitmq

background_tasks:
Expand All @@ -94,6 +95,7 @@ services:
- ..:/code/listenbrainz:z
depends_on:
- redis
- lb_db
- rabbitmq

spotify_reader:
Expand All @@ -103,6 +105,7 @@ services:
command: python3 -m "listenbrainz.spotify_updater.spotify_read_listens"
depends_on:
- redis
- lb_db
- rabbitmq

websockets:
Expand All @@ -114,6 +117,7 @@ services:
- "8102:8102"
depends_on:
- redis
- lb_db
- rabbitmq

static_builder:
Expand Down

0 comments on commit 44bdf59

Please sign in to comment.