-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(virtualisation): switch from docker to podman
- Loading branch information
1 parent
f95c26d
commit 73a0c92
Showing
4 changed files
with
13 additions
and
10 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
{ | ||
virtualisation.podman = { | ||
enable = true; | ||
|
||
# Create a `docker` alias for podman, to use it as a drop-in replacement | ||
dockerCompat = true; | ||
dockerSocket.enable = true; | ||
|
||
# Required for containers under podman-compose to be able to talk to each other. | ||
defaultNetwork.settings.dns_enabled = true; | ||
}; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -7,7 +7,6 @@ | |
extraGroups = [ | ||
"networkmanager" | ||
"wheel" | ||
"docker" | ||
"video" | ||
"dialout" # for arduino | ||
]; | ||
|