Skip to content

Instantly share code, notes, and snippets.

@haghighi
Last active October 13, 2019 05:27
Show Gist options
  • Save haghighi/c6304ddde802c0894b5adfc4a55e84f8 to your computer and use it in GitHub Desktop.
Save haghighi/c6304ddde802c0894b5adfc4a55e84f8 to your computer and use it in GitHub Desktop.
nexus3-docker-compose
version: "3"
services:
nexus:
image: sonatype/nexus3
volumes:
- "nexus-docker-compose_nexus-data:/nexus-data"
restart: always
environment:
- INSTALL4J_ADD_VM_PARAMS="-Xms4G -Xmx4G -XX:MaxDirectMemorySize=4014M " # 12 GB physical Memmory
ports:
- "8081:8081"
- "1111:1111"
- "5555:5555"
volumes:
nexus-docker-compose_nexus-data:
external: true
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment