No description
  • Python 59.2%
  • HTML 27.5%
  • JavaScript 6.9%
  • Roff 3.5%
  • CSS 1.7%
  • Other 1.1%
Find a file
Michael Gmelin 59b9f0e6b8 Fix build
Man page was deleted without actually updating setup.py
2025-12-14 17:32:20 +03:00
.github/workflows CI: Add Python 3.12 workflow 2025-09-25 20:47:02 +03:00
doc 1.12 release 2025-12-12 23:04:57 +01:00
docs 1.12 release 2025-12-12 23:04:57 +01:00
iocage.docset update doc build for 1.4 2024-05-29 19:02:30 +02:00
iocage_cli 1.12 release 2025-12-12 23:04:57 +01:00
iocage_lib Change default domainname from "none" to "" (#103) 2025-12-13 13:25:17 +00:00
rc.d fix broken commands (#1019) 2019-08-10 10:30:29 -05:00
tests Fix Cirrus CI and make tests pep8-compliant (#101) 2025-12-12 22:47:04 +01:00
zsh-completion adds zsh completion to iocage (#394) 2017-10-16 06:46:05 -05:00
.cirrus.yml Fix Cirrus CI and make tests pep8-compliant (#101) 2025-12-12 22:47:04 +01:00
.coveragerc Improve testing (#54) 2017-02-28 17:14:53 -06:00
.gitignore NAS-101270 / 11.3 / Replace old fstab locations (#917) 2019-04-15 11:30:56 -05:00
_config.yml Set theme jekyll-theme-tactile 2017-01-25 21:49:44 -06:00
CODE_OF_CONDUCT.md Create CODE_OF_CONDUCT.md 2017-06-22 18:30:13 -05:00
CONTRIBUTING.md deploy docs to github pages 2024-11-29 18:27:52 +01:00
fastentrypoints.py use fast returns for less indentation and easier readability (#293) 2017-08-01 13:35:41 -05:00
flake8.sh lint (#52) 2024-11-29 15:17:24 +01:00
iocage Avoid false positive with EOL notice on jail updates 2018-10-09 22:06:24 -05:00
iocage.8 iocage.8: document /dev/null option for resolver (#92) 2025-09-28 15:53:43 +02:00
ISSUE_TEMPLATE.md Fix typo 2017-05-18 16:17:59 -05:00
LICENSE Bump copyrights to 2019 2019-01-03 17:20:28 -06:00
Makefile relax python version in docs 2024-06-18 16:22:37 +02:00
PULL_REQUEST_TEMPLATE.md deploy docs to github pages 2024-11-29 18:27:52 +01:00
pytest.ini Fix Cirrus CI and make tests pep8-compliant (#101) 2025-12-12 22:47:04 +01:00
README.md deploy docs to github pages 2024-11-29 18:27:52 +01:00
requirements-dev.txt Fix wrong dependency format 2025-09-25 20:47:21 +03:00
requirements-test.txt Fix Cirrus CI and make tests pep8-compliant (#101) 2025-12-12 22:47:04 +01:00
requirements.txt Remove dependency on six. 2024-07-14 09:25:25 +00:00
setup.cfg Fix Cirrus CI and make tests pep8-compliant (#101) 2025-12-12 22:47:04 +01:00
setup.py Fix build 2025-12-14 17:32:20 +03:00

iocage

Average time to resolve an issue Percentage of issues still open Python Version GitHub issues GitHub forks GitHub stars Twitter

A FreeBSD jail manager

iocage is a jail/container manager amalgamating some of the best features and technologies the FreeBSD operating system has to offer. It is geared for ease of use with a simple and easy to understand command syntax.

iocage is in the FreeBSD ports tree as sysutils/py-iocage. To install using binary packages, simply run: pkg install sysutils/iocage

Installation

GitHub:

The FreeBSD source tree must be located at $SRC_BASE (/usr/src by default) to build from git.

  • pkg install python3 git-lite lang/cython3 devel/py-pip
  • git clone https://github.com/freebsd/iocage
  • make install as root

To install subsequent updates: run make install as root.

Ports:

  • Build the port as follows: cd /usr/ports/sysutils/iocage/ ; make install clean

Pkg:

  • It is possible to install pre-built packages using pkg(8) if you are using FreeBSD 10 or above: pkg install sysutils/iocage

Upgrading from iocage_legacy:

This repository replaces iocage_legacy. To upgrade to the current version:

  1. Stop the jails (service iocage stop; iocage stop ALL)
  2. Back up your data
  3. Remove the old iocage package if it is installed (pkg delete iocage)
  4. Install iocage using one of the methods above
  5. Migrate the jails. This can be done by running iocage list as root
  6. Start the jails (service iocage onestart)

WARNING:

  • Some features of the previous iocage_legacy are either being dropped or simply not ported yet, feel free to open an issue asking about your favorite feature. But please search before opening a new one. PR's welcome for any feature you want!

Raising an issue:

We like issues! If you are having trouble with iocage please open a GitHub issue and we will run around with our hair on fire look into it. Before doing so, please give us some information about the situation:

  • Tell us what version of FreeBSD you are using with something like uname -ro
  • It would also be helpful if you gave us the output of iocage --version
  • Most importantly, try to be detailed. Simply stating "I tried consoling into a jail and it broke" will not help us very much.
  • Use the Markdown Basics GitHub page for more information on how to paste lines of code and terminal output.

Submitting a pull request:

Please be detailed on the exact use case of your change and a short demo of it. Make sure it conforms with PEP-8 and that you supply a test with it if relevant. Lines may not be longer then 80 characters.

FEATURES

  • Ease of use
  • Rapid jail creation within seconds
  • Automatic package installation
  • Virtual networking stacks (vnet)
  • Shared IP based jails (non vnet)
  • Transparent ZFS snapshot management
  • Export and import
  • And many more!

QUICK HOWTO

Activate a zpool:

iocage activate ZPOOL

NOTE: ZPOOL is a placeholder. Use zpool list and substitute it for the zpool you wish to use.

Fetch a release:

iocage fetch

Create a jail:

iocage create -n myjail ip4_addr="em0|192.168.1.10/24" -r 11.0-RELEASE

NOTE: em0 and 11.0-RELEASE are placeholders. Please replace them with your real interface (ifconfig) and RELEASE chosen during iocage fetch.

Start the jail:

iocage start myjail

Congratulations, you have created your first jail with iocage! You can now use it like you would a real system. Since SSH won't be available by default, iocage console myjail is a useful spot to begin configuration of your jail.

To see a list of commands available to you now, type iocage outside the jail.


REQUIREMENTS

  • FreeBSD 11.4-RELEASE amd64 and higher or HardenedBSD/TrueOS
  • ZFS file system
  • Python 3.8+
  • UTF-8 locale (place into your ~/.login_conf):
me:\
        :charset=UTF-8:\
        :lang=en_US.UTF-8:\
        :setenv=LC_COLLATE=C:

Optional

  • Kernel compiled with:

      # This is optional and only needed if you need VNET
    
      options         VIMAGE # VNET/Vimage support
    

Helpful Considerations

  • For the explanations on jail properties read jail(8)

  • Create bridge0 and bridge1 interfaces for VNET jails to attach to.

  • Use iocage set to modify properties and iocage get to retrieve property values

  • Type iocage COMMAND --help to see any flags the command supports and their help, for example:

      iocage create --help
      iocage fetch --help
      iocage list --help
    
  • If using VNET consider adding the following to /etc/sysctl.conf on the host:

      net.inet.ip.forwarding=1       # Enable IP forwarding between interfaces
      net.link.bridge.pfil_onlyip=0  # Only pass IP packets when pfil is enabled
      net.link.bridge.pfil_bridge=0  # Packet filter on the bridge interface
      net.link.bridge.pfil_member=0  # Packet filter on the member interface