All Projects → klo2k → nexus3-docker

klo2k / nexus3-docker

Licence: GPL-3.0 license
ARM Docker image of Sonatype Nexus Repository Manager (NXRM) (Raspberry Pis - armv7l, aarch64)

Programming Languages

Dockerfile
14818 projects
shell
77523 projects

Projects that are alternatives of or similar to nexus3-docker

tor-relay-docker
Tor relay Docker images for x86-64, armhf & arm64 (from source)
Stars: ✭ 32 (-41.82%)
Mutual labels:  arm, arm64
volumizr
Simple kubernetes storage solution using Minio
Stars: ✭ 20 (-63.64%)
Mutual labels:  arm, arm64
tensorflow-aarch64
Compiled tensorflow for aarch64 architecture
Stars: ✭ 20 (-63.64%)
Mutual labels:  arm, arm64
multiarch-letsencrypt-nginx-proxy
nginx-proxy, docker-gen and letsencrypt-nginx-proxy-companion on arm archs
Stars: ✭ 23 (-58.18%)
Mutual labels:  arm, arm64
arm64-pgtable-tool
Tool for automatically generating MMU and translation table setup code, whether to drag and drop into your own bare metal arm64 projects or to assist you in your own learning.
Stars: ✭ 41 (-25.45%)
Mutual labels:  arm, arm64
Capstone.NET
.NET Core and .NET Framework binding for the Capstone Disassembly Framework
Stars: ✭ 108 (+96.36%)
Mutual labels:  arm, arm64
docker-images
All my docker images in one mono-repository with multi-arch support
Stars: ✭ 18 (-67.27%)
Mutual labels:  arm, arm64
makeuniversal
Tool to create a Universal Binary version of a Qt distribution.
Stars: ✭ 40 (-27.27%)
Mutual labels:  arm, arm64
alpine-php-fpm
Lightweight and optimised PHP-FPM (PHP 7.4, 8.0, 8.1) Docker images with essential extensions on top of latest Alpine Linux.
Stars: ✭ 53 (-3.64%)
Mutual labels:  arm, arm64
fdtd3d
fdtd3d is an open source 1D, 2D, 3D FDTD electromagnetics solver with MPI, OpenMP and CUDA support for x86, arm, arm64 architectures
Stars: ✭ 77 (+40%)
Mutual labels:  arm, arm64
deollvm64
deobfuscator llvm arm64 script
Stars: ✭ 67 (+21.82%)
Mutual labels:  arm, arm64
Realtek-USB-Wireless-Adapter-Drivers
Realtek USB Wireless Adapter Drivers [0bda:f179] (Kernel 4.15.x ~ 5.9.x)
Stars: ✭ 34 (-38.18%)
Mutual labels:  arm, arm64
alpine-qbittorrent-openvpn
qBittorrent docker container with OpenVPN client running as unprivileged user on alpine linux
Stars: ✭ 230 (+318.18%)
Mutual labels:  arm, arm64
tensorflow-serving-arm
TensorFlow Serving ARM - A project for cross-compiling TensorFlow Serving targeting popular ARM cores
Stars: ✭ 75 (+36.36%)
Mutual labels:  arm, arm64
discolix
distroless arm docker images
Stars: ✭ 22 (-60%)
Mutual labels:  arm, arm64
WindowsSimplify
Windows 系統優化精簡 / Windows Simplify Project
Stars: ✭ 234 (+325.45%)
Mutual labels:  arm, arm64
Hellosilicon
An attempt with ARM64 assembly on Apple Silicon Macs
Stars: ✭ 220 (+300%)
Mutual labels:  arm, arm64
Doesitarm
🦾 A list of reported app support for Apple Silicon and the new Apple M1 Macs
Stars: ✭ 3,200 (+5718.18%)
Mutual labels:  arm, arm64
DLARM
DLARM: Dissertation for Computer Science Masters Degree at UFRGS
Stars: ✭ 24 (-56.36%)
Mutual labels:  arm, arm64
GoRAT
GoRAT (Go Remote Access Tool) is an extremely powerful reverse shell, file server, and control plane using HTTPS reverse tunnels as a transport mechanism.
Stars: ✭ 34 (-38.18%)
Mutual labels:  arm, arm64

Sonatype Nexus 3 on ARM

Run Sonatype Sonatype Nexus Repository Manager (NXRM) on ARM hardware (e.g. Raspberry Pi) - both 32-bit (armv7l) and 64-bit (aarch64).

Nexus doesn't provide an official image to run on Raspberry Pi.

So I'm creating one and sharing it with everyone :-) .

(For x64, use the official image - sonatype/nexus3)

Running

docker run -d -p 8081:8081 --name nexus klo2k/nexus3

Building with "docker buildx" locally

Initialise buildx, if you're on a x64 machine:

# Enable experimental mode
export DOCKER_CLI_EXPERIMENTAL=enabled

# Enable ARM support
docker run --rm --privileged docker/binfmt:a7996909642ee92942dcd6cff44b9b95f08dad64

# Create 'mybuilder' if not exist, set as default builder
docker buildx inspect mybuilder||docker buildx create --name mybuilder
docker buildx use mybuilder

# Start builder
docker buildx inspect --bootstrap

Build ARM 32-bit (armv7l):

docker buildx build --pull \
  --platform "linux/arm/v7" \
  --tag "klo2k/nexus3" \
  --output=type=docker \
  .

Build ARM 64-bit (aarch64):

docker buildx build --pull \
  --platform "linux/arm64" \
  --tag "klo2k/nexus3" \
  --output=type=docker \
  .

Credits

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].