use push-container embedded into image
All checks were successful
continuous-integration/drone/push Build is passing
All checks were successful
continuous-integration/drone/push Build is passing
This commit is contained in:
parent
28f578d8d4
commit
9db1d09ef7
2 changed files with 4 additions and 24 deletions
|
@ -35,13 +35,13 @@ steps:
|
||||||
pull: always
|
pull: always
|
||||||
commands:
|
commands:
|
||||||
- nix build -L .#webserver
|
- 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 build -L .#smtpd
|
||||||
- nix run .#push-container -- result --repository network/healthchecks-smtpd
|
- push-container result --repository network/healthchecks-smtpd
|
||||||
- nix build -L .#sendalerts
|
- 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 build -L .#maintenance
|
||||||
- nix run .#push-container -- result --repository network/healthchecks-maintenance
|
- push-container result --repository network/healthchecks-maintenance
|
||||||
settings:
|
settings:
|
||||||
registry: r.ocj.io
|
registry: r.ocj.io
|
||||||
username:
|
username:
|
||||||
|
|
20
flake.nix
20
flake.nix
|
@ -12,26 +12,6 @@
|
||||||
system = "x86_64-linux";
|
system = "x86_64-linux";
|
||||||
pkgs = import nixpkgs {
|
pkgs = import nixpkgs {
|
||||||
inherit system;
|
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 {
|
py = pkgs.python3.override {
|
||||||
packageOverrides = final: prev: {
|
packageOverrides = final: prev: {
|
||||||
|
|
Loading…
Reference in a new issue