Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/dngray/containers
https://github.com/dngray/containers
Last synced: 15 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/dngray/containers
- Owner: dngray
- Created: 2022-01-22T05:31:11.000Z (almost 3 years ago)
- Default Branch: main
- Last Pushed: 2024-04-12T09:01:00.000Z (7 months ago)
- Last Synced: 2024-04-12T16:29:58.707Z (7 months ago)
- Language: Makefile
- Size: 68.4 KB
- Stars: 5
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: readme.md
- Changelog: changedetection/changedetection.mk
Awesome Lists containing this project
README
# Containers
Just the containers I use.
## IPv6
### Docker
If using IPv6 with docker remember to [enable
support](https://docs.docker.com/config/daemon/ipv6/) by adding this to
`/etc/docker/daemon.json````json
{
"experimental": true,
"ip6tables": true
}
```### Podman
For podman see [How to configure Podman 4.0 for IPv6](https://developers.redhat.com/articles/2022/08/10/how-conifgure-podman-40-ipv6)
1. Install `netavark`
2. Set `network_backend = "netavark"` in `/etc/containers/containers.conf`
3. The default `podman0` bridge does not have IPv6 defined and DNS disabled.
4. Create a new bridge `podman network create --ipv6 podman1`
5. Examine bridge: `podman network inspect podman1`
6. The new bridge should have this defined:```json
{
"subnet": "fd96:7c2e:b8d2:bf65::/64",
"gateway": "fd96:7c2e:b8d2:bf65::1"
}
],
"ipv6_enabled": true,
```