use push-container embedded into image
All checks were successful
continuous-integration/drone/push Build is passing

This commit is contained in:
Jeffrey C. Ollie 2023-04-15 23:33:12 -05:00
parent 28f578d8d4
commit 9db1d09ef7
Signed by: jeff
GPG key ID: 6F86035A6D97044E
2 changed files with 4 additions and 24 deletions

View file

@ -35,13 +35,13 @@ steps:
pull: always
commands:
- nix build -L .#webserver
- nix run .#push-container -- result --repository network/healthchecks-webserver
- push-container result --repository network/healthchecks-webserver
- nix build -L .#smtpd
- nix run .#push-container -- result --repository network/healthchecks-smtpd
- push-container result --repository network/healthchecks-smtpd
- nix build -L .#sendalerts
- nix run .#push-container -- result --repository network/healthchecks-sendalerts
- push-container result --repository network/healthchecks-sendalerts
- nix build -L .#maintenance
- nix run .#push-container -- result --repository network/healthchecks-maintenance
- push-container result --repository network/healthchecks-maintenance
settings:
registry: r.ocj.io
username:

View file

@ -12,26 +12,6 @@
system = "x86_64-linux";
pkgs = import nixpkgs {
inherit system;
overlays = [
(
self: super: {
# sonarr = super.sonarr.overrideAttrs (
# old:
# let
# version = "3.0.10.1567";
# sha256 = "sha256-6zdp/Bg+9pcrElW5neB+BC16Vn1VhTjhMRRIxGrKhxc=";
# in
# {
# inherit version;
# src = pkgs.fetchurl {
# url = "https://download.sonarr.tv/v3/main/${version}/Sonarr.main.${version}.linux.tar.gz";
# sha256 = sha256;
# };
# }
# );
}
)
];
};
py = pkgs.python3.override {
packageOverrides = final: prev: {