diff options
-rw-r--r-- | default.nix | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/default.nix b/default.nix index 16f5d45..18374eb 100644 --- a/default.nix +++ b/default.nix @@ -23,6 +23,8 @@ in rec { buildInputs = baseAttrs.buildInputs ++ [ pkgs.docker-compose ]; buildPhase = '' source .envrc + # =docker-compose config= doesn't accept files with different names + cp docker-compose.env.yaml docker-compose.yaml docker-compose config &> /dev/null || { echo "Invalid docker-compose.yml file." exit 1 |