# unikraft images copy

Copy images.

```
unikraft images copy <source> <dest> [flags]
```

## Examples

Create a copy of an image:

```bash
unikraft image copy unikraft.io/official/nginx:latest unikraft.io/my-user/my-nginx
```

Upload a local image to a remote registry:

```bash
unikraft image copy ./my-local-image.tar unikraft.io/my-user/my-image:1.0.0
```

Download an image from a remote registry:

```bash
unikraft image copy unikraft.io/official/redis:latest ./my-redis-image.tar
```

## Options

```
  --insecure INSECURE         Allow insecure (HTTP/unverified TLS) connections to registries. Specify hostnames to restrict, or omit to apply to all.
```

## Options inherited from parent commands

```
  --config file               Path to the configuration file.
  --log-level level           Set the logging level. (default info)
  --log-type type             Set the log type. (default text)
  --profile name              Set the current profile.
  --telemetry                 Toggle anonymous usage analytics. (default true)
```

## See Also

* [`unikraft images`](../images.mdx): Manage Unikraft Cloud images.

