1
0
Fork 0
mirror of https://github.com/NixOS/nix.dev.git synced 2024-10-18 14:32:43 -04:00

Merge pull request #123 from roberth/patch-1

building-and-running-docker-images: Set system
This commit is contained in:
Domen Kožar 2021-03-05 17:49:13 +00:00 committed by GitHub
commit 5141c77ea3
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -24,7 +24,7 @@ Docker images:
.. code:: nix
{ pkgs ? import <nixpkgs> {} }:
{ pkgs ? import <nixpkgs> { system = "x86_64-linux"; } }:
pkgs.dockerTools.buildImage {
name = "hello-docker";