Skip to content

Commit

Permalink
Update docker-compose.typesense.yaml
Browse files Browse the repository at this point in the history
Change the admin service to only restart on failure, instead of 'always' which may be unpredictable and cause it to always run when Docker starts.
  • Loading branch information
kevinquillen authored Jun 5, 2024
1 parent 2a4ca07 commit 5eedcdd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion docker-compose.typesense.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ services:
typesense_admin:
container_name: ddev-${DDEV_SITENAME}-typesense-admin
image: ghcr.io/bfritscher/typesense-dashboard:latest
restart: always
restart: "on-failure"
labels:
com.ddev.site-name: ${DDEV_SITENAME}
com.ddev.approot: $DDEV_APPROOT
Expand Down

0 comments on commit 5eedcdd

Please sign in to comment.