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