Skip to content

Commit

Permalink
Fix Nix generated docker image names
Browse files Browse the repository at this point in the history
  • Loading branch information
tobim committed Feb 17, 2023
1 parent 8ebdc1c commit 1a7be33
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions flake.nix
Original file line number Diff line number Diff line change
Expand Up @@ -114,27 114,27 @@
apps.vast-full = flake-utils.lib.mkApp {drv = packages.vast-full;};
apps.vast-full-static = flake-utils.lib.mkApp {drv = packages.vast-full-static;};
apps.stream-vast-image = stream-image {
name = "vast";
name = "tenzir/vast";
pkg = self.packages.${system}.vast;
};
apps.stream-vast-slim-image = stream-image {
name = "vast-slim";
name = "tenzir/vast-slim";
pkg = self.packages.${system}.vast-static;
};
apps.stream-vast-ce-image = stream-image {
name = "vast-ce";
name = "tenzir/vast-ce";
pkg = self.packages.${system}.vast-ce;
};
apps.stream-vast-ce-slim-image = stream-image {
name = "vast-ce-slim";
name = "tenzir/vast-ce-slim";
pkg = self.packages.${system}.vast-ce-static;
};
apps.stream-vast-full-image = stream-image {
name = "vast-full";
name = "tenzir/vast-full";
pkg = self.packages.${system}.vast-full;
};
apps.stream-vast-full-slim-image = stream-image {
name = "vast-full-slim";
name = "tenzir/vast-full-slim";
pkg = self.packages.${system}.vast-full-static;
};
apps.default = apps.vast;
Expand Down

0 comments on commit 1a7be33

Please sign in to comment.