Skip to content

Commit

Permalink
Use "init: true" for all Python services
Browse files Browse the repository at this point in the history
  • Loading branch information
gbenson committed Oct 8, 2024
1 parent 44ba031 commit c824e50
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion docker-compose.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
version: "3.2"
version: "3.7"

services:
rabbitmq:
Expand All @@ -21,6 +21,7 @@ services:

matrix-sender:
image: gbenson/hive-matrix-connector
init: true
restart: unless-stopped
volumes:
- matrix_sender:/var/lib/matrix
Expand All @@ -31,6 +32,7 @@ services:

matrix-receiver:
image: gbenson/hive-matrix-connector
init: true
restart: unless-stopped
volumes:
- matrix_receiver:/var/lib/matrix
Expand All @@ -40,6 +42,7 @@ services:

email-receiver:
image: gbenson/hive-email-receiver
init: true
restart: unless-stopped
volumes:
- .config/rabbitmq.env:/etc/hive/rabbitmq.env:ro
Expand All @@ -49,6 +52,7 @@ services:

reading-list-updater:
image: gbenson/hive-reading-list-updater
init: true
restart: unless-stopped
volumes:
- .config/rabbitmq.env:/etc/hive/rabbitmq.env:ro
Expand Down

0 comments on commit c824e50

Please sign in to comment.