2 unstable releases
Uses old Rust 2015
0.2.0 | Apr 25, 2017 |
---|---|
0.1.1 | Sep 30, 2016 |
#238 in #docker
4KB
cargo-docker
A cargo subcommand to build Rust code inside docker and get the result back.
It's useful to build binary with other environment. As example, you can build binary for CentOS
inside Ubuntu
.
Usage
To use cargo-docker
you should type the following:
$ cargo docker --image=rustup/debian:jessie --output=jessie-target
Important
This command uses docker without sudo and you have to get rights to use docker.
Add docker
group:
$ sudo groupadd docker
$ sudo service docker restart
Not necessary if you have installed new version of docker.
Add yourself to docker
group:
$ sudo gpasswd -a ${USER} docker
Login again to update user flags.
Dependencies
~750KB