homelab/nexus/docker-compose.yml

16 lines
361 B
YAML
Raw Normal View History

2022-10-06 05:42:23 +00:00
version: "3.7"
services:
nexus:
image: sonatype/nexus3:latest
2022-10-06 07:31:09 +00:00
deploy:
mode: replicated
2022-10-06 14:36:03 +00:00
replicas: 1
2022-10-06 05:42:23 +00:00
environment:
2022-10-06 15:55:31 +00:00
INSTALL4J_ADD_VM_PARAMS: -Xms128m -Xmx512m -XX:MaxDirectMemorySize=512m
2022-10-06 05:42:23 +00:00
container_name: nexus3
restart: always
ports:
- 8081:8081
- 8082:8082
volumes:
2022-10-06 15:55:31 +00:00
- /mnt/bucket/nexus:/nexus-data