diff options
| author | Mel <einebeere@gmail.com> | 2024-12-07 18:16:47 +0100 |
|---|---|---|
| committer | Mel <einebeere@gmail.com> | 2024-12-07 18:16:47 +0100 |
| commit | d1a88ffa2c8cf5d6dd690f9059c0da059e01b716 (patch) | |
| tree | b05d964e2e5c692ce36ec3471939f1f32ba54593 /services/pds.nix | |
| parent | a511e64fab20700fad50dedd1f966b4605e637b5 (diff) | |
| download | network-d1a88ffa2c8cf5d6dd690f9059c0da059e01b716.tar.zst network-d1a88ffa2c8cf5d6dd690f9059c0da059e01b716.zip | |
Convert most services to streamed images and foundation
Signed-off-by: Mel <einebeere@gmail.com>
Diffstat (limited to 'services/pds.nix')
| -rw-r--r-- | services/pds.nix | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/services/pds.nix b/services/pds.nix index 68ca66a..671dc6a 100644 --- a/services/pds.nix +++ b/services/pds.nix @@ -9,7 +9,7 @@ let pdsLocalPort = 16419; pdsDir = "/srv/pds"; - pdsImage = dockerTools.buildLayeredImage { + pdsImage = dockerTools.streamLayeredImage { name = "pds"; tag = pds.version; fromImage = common.alpine.base; @@ -30,7 +30,7 @@ in }; foundation.services.pds = { - fullImage = { imageFile = pdsImage; image = "pds:${pds.version}"; }; + image = pdsImage; ports = [ [ pdsLocalPort 3000 ] ]; volumes = [ |
