> For AI agents: the complete documentation index is available at https://www.tteam.icu/llms.txt, the full documentation bundle is available at https://www.tteam.icu/llms-full.txt.

# nexus3

[官网](https://help.sonatype.com/index.html)

## 启动

```sh file="./nexus3/setup.sh" title="setup.sh"
#!/bin/bash

mkdir -p nexus-data && chown -R 200.200 nexus-data

docker kill nexus3
docker rm nexus3
docker run -d -p 8081:8081 --name nexus3 \
--restart=always \
-v /etc/timezone:/etc/timezone:ro \
-v /etc/localtime:/etc/localtime:ro \
-v $(pwd)/nexus-data:/nexus-data \
sonatype/nexus3:3.69.0
```
