1
2
mirror of https://github.com/vimagick/dockerfiles synced 2024-06-20 22:08:39 +00:00
dockerfiles/nexus3/docker-compose.yml

24 lines
498 B
YAML
Raw Normal View History

2021-12-01 10:11:40 +00:00
version: "3.8"
2019-10-19 09:36:39 +00:00
services:
nexus3:
2021-12-01 10:11:40 +00:00
image: sonatype/nexus3:3.37.0
2019-10-19 09:36:39 +00:00
ports:
- "8081:8081"
volumes:
- ./data:/nexus-data
depends_on:
- minio
restart: unless-stopped
minio:
2021-12-01 10:11:40 +00:00
image: minio/minio:RELEASE.2020-04-15T19-42-18Z
2019-10-19 09:36:39 +00:00
command: gateway oss https://oss-cn-beijing.aliyuncs.com
expose:
2021-12-01 10:11:40 +00:00
- "9000:9000"
2019-10-19 09:36:39 +00:00
environment:
- MINIO_ACCESS_KEY=xxxxxxxxxxxxxxxx
- MINIO_SECRET_KEY=xxxxxxxxxxxxxxxxxxxxxxxxxxxxxx
restart: unless-stopped