1
2
mirror of https://github.com/vimagick/dockerfiles synced 2024-06-16 11:58:47 +00:00

add nexus3

This commit is contained in:
kev 2019-10-16 17:50:28 +08:00
parent 6bb55c8112
commit b675ab8b52
3 changed files with 30 additions and 0 deletions

@ -290,6 +290,7 @@ A collection of delicious docker recipes.
- [x] sonatype/nexus3
- [x] jazzdd/phpvirtualbox
- [x] jenkins
- [x] sonatype/nexus3
- [x] jupyter/notebook
- [x] kylemanna/openvpn
- [x] metabase/metabase

22
nexus3/README.md Normal file

@ -0,0 +1,22 @@
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
```

@ -0,0 +1,7 @@
nexus3:
image: sonatype/nexus3
ports:
- "8081:8081"
volumes:
- ./data:/nexus-data
restart: unless-stopped