1
0
mirror of https://github.com/vimagick/dockerfiles.git synced 2024-12-12 11:14:57 +02:00
dockerfiles/nexus3/README.md
2019-10-16 17:50:28 +08:00

23 lines
260 B
Markdown

nexus3
======
## docker-compose.yml
```yaml
nexus3:
image: sonatype/nexus3
ports:
- "8081:8081"
volumes:
- ./data:/nexus-data
restart: unless-stopped
```
## up and running
```bash
$ mkdir data
$ chown -R 200 data
$ docker-compose up -d
```