19 lines
364 B
YAML
19 lines
364 B
YAML
version: "3"
|
|
|
|
services:
|
|
nexus:
|
|
restart: always
|
|
image: docker.loafle.net/library/nexus:3.16.1-02-alpine
|
|
container_name: nexus3
|
|
environment:
|
|
JAVA_MIN_MEM: "1200M"
|
|
JAVA_MAX_MEM: "1200M"
|
|
volumes:
|
|
- /service/nexus/data:/nexus-data
|
|
ports:
|
|
- "8081:8081"
|
|
ulimits:
|
|
nofile:
|
|
soft: 65536
|
|
hard: 65536
|