- Navigate to Datasets, select your Dataset
- Click Add Zvol
- Name: e.g.,
iscsi-disk01
- Name: e.g.,
- Size: e.g.,
10GiB
| Feature | IPv4 | IPv6 |
|---|---|---|
| Address Size | 32-bit (~4.3 billion addresses) | 128-bit (~340 undecillion addresses) |
| Format | 4 decimal numbers, dot-separated | 8 groups of 4 hex digits, colon-separated |
| Example | 192.168.0.21 |
2401:xxxx:xxxx:xxxx::21 |
| NAT | Common (private β public mapping) | Not needed, direct global addressing |
- Docker caches layers based on commands in the Dockerfile.
- To take advantage of caching:
- Copy dependency files (
pyproject.toml,uv.lock, etc.) before source code. - Run dependency installation (
uv sync,pip install) before copying the app code.
- Copy dependency files (
- Cache is reused if the files/commands in a layer haven't changed.
uv is a fast and modern Python package, environment, and project manager that can:
- Install and manage Python versions (like
pyenv) - Handle dependencies and virtual environments (like
Poetry) - Run CLI tools without global installs (like
pipx)
NewerOlder