docker-compose: Set buscribe tag seperately

It's big and slow and most of the time doesn't need updating.
pull/418/head
Mike Lang 3 weeks ago
parent 4cd0ef1327
commit 48c91b7828

@ -13,6 +13,7 @@
// you're actually running, and must manually re-pull to get an updated copy. // you're actually running, and must manually re-pull to get an updated copy.
image_tag:: std.extVar("tag"), image_tag:: std.extVar("tag"),
database_tag:: "bb05e37", // tag for DB, which changes less and restarts are disruptive database_tag:: "bb05e37", // tag for DB, which changes less and restarts are disruptive
buscribe_tag:: std.extVar("tag"), // tag for buscribe, which changes less and takes ages to build
image_base:: "ghcr.io/dbvideostriketeam", // Change this to use images from a different source than the main one image_base:: "ghcr.io/dbvideostriketeam", // Change this to use images from a different source than the main one
// For each service, whether to deploy that service. // For each service, whether to deploy that service.
@ -676,7 +677,7 @@
}, },
[if $.enabled.buscribe then "buscribe"]: { [if $.enabled.buscribe then "buscribe"]: {
image: $.get_image("buscribe"), image: $.get_image("buscribe", $.buscribe_tag),
restart: "always", restart: "always",
command: [ command: [
$.buscribe_channel, $.buscribe_channel,

Loading…
Cancel
Save