demo/dockercompose/nexus/docker-compose.yml

14 lines
415 B
YAML
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

services:
nexus:
image: sonatype/nexus3:latest
container_name: nexus
restart: always
ports:
- "8081:8081"
- "8082:8082"
- "8083:8083"
volumes:
- ./nexus-data:/nexus-data
environment:
# Nexus 默认比较吃内存,如果服务器配置有限,建议限制其 JVM 内存1G~2G 即可
- INSTALL4J_ADD_VM_PARAMS=-Xms1g -Xmx1g -XX:MaxDirectMemorySize=1g