Skip to content

Commit

Permalink
fix(containers): disable compression
Browse files Browse the repository at this point in the history
Signed-off-by: Cameron Smith <cameron.ray.smith@gmail.com>
  • Loading branch information
cameronraysmith committed Jul 7, 2024
1 parent 764a534 commit 853e00b
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 2 deletions.
1 change: 1 addition & 0 deletions nix/containers/code.nix
Original file line number Diff line number Diff line change
Expand Up @@ -126,6 +126,7 @@ in
tag = "latest";
maxLayers = 121;
fromImage = sudoImage;
compressor = "none";
extraPkgs = with pkgs;
[
code-server
Expand Down
4 changes: 2 additions & 2 deletions nix/containers/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -205,7 +205,7 @@
tag = "latest";

maxLayers = 121;
compressor = "zstd";
compressor = "none";

contents = devcontainerContents ++ [packageGitRepoToContainer];
config = makeContainerConfig {
Expand All @@ -228,7 +228,7 @@
tag = "latest";

maxLayers = 121;
compressor = "zstd";
compressor = "none";

contents = devcontainerContents ++ [packageGitRepoToContainer];
config = makeContainerConfig {
Expand Down
1 change: 1 addition & 0 deletions nix/containers/jupyter.nix
Original file line number Diff line number Diff line change
Expand Up @@ -88,6 +88,7 @@ in
tag = "latest";
maxLayers = 121;
fromImage = sudoImage;
compressor = "none";
extraPkgs = with pkgs;
[
ps
Expand Down

0 comments on commit 853e00b

Please sign in to comment.