mirror of
https://codeberg.org/privacy1st/nix-git
synced 2024-11-22 22:09:34 +01:00
docs: Docker IPv6
This commit is contained in:
parent
15cf852cb9
commit
4b628fee5d
@ -12,6 +12,21 @@
|
|||||||
# As we use btrfs, we enable the according storageDriver option.
|
# As we use btrfs, we enable the according storageDriver option.
|
||||||
storageDriver = "btrfs";
|
storageDriver = "btrfs";
|
||||||
|
|
||||||
|
# IPv6 support.
|
||||||
|
# https://search.nixos.org/options?channel=23.05&show=virtualisation.docker.daemon.settings
|
||||||
|
# https://docs.docker.com/config/daemon/ipv6/#use-ipv6-for-the-default-bridge-network
|
||||||
|
# TODO: See notes in Jinja-Compose/proxy.yml.jinja2 why this is not yet ready to use.
|
||||||
|
# daemon.settings = {
|
||||||
|
# # Enable IPv6 networking on the default network.
|
||||||
|
# ipv6 = true;
|
||||||
|
# # Assign a subnet to the default bridge network, enabling dynamic IPv6 address allocation.
|
||||||
|
# fixed-cidr-v6 = "2001:db8:1::/64";
|
||||||
|
# # Enable additional IPv6 packet filter rules, providing network isolation and port mapping.
|
||||||
|
# # This parameter requires experimental to be set to `true`.
|
||||||
|
# ip6tables = true;
|
||||||
|
# experimental = true;
|
||||||
|
# };
|
||||||
|
|
||||||
# Run `docker system prune -f ${autoPrune.flags}` every week.
|
# Run `docker system prune -f ${autoPrune.flags}` every week.
|
||||||
autoPrune.enable = true;
|
autoPrune.enable = true;
|
||||||
autoPrune.dates = "weekly";
|
autoPrune.dates = "weekly";
|
||||||
|
Loading…
Reference in New Issue
Block a user