Skip to content

Instantly share code, notes, and snippets.

View stack-head's full-sized avatar

James O'Carroll stack-head

View GitHub Profile
@stack-head
stack-head / package_drone.Dockerfile
Created March 13, 2019 23:22
p2_repository_mirror_package_drone_dockerfile
FROM ubuntu:16.04
MAINTAINER James O'Carroll <james.ocarroll@stackhead.com>
ENV DEBIAN_FRONTEND noninteractive
RUN apt-get update && apt-get install -y \
add-apt-key \
software-properties-common
@stack-head
stack-head / docker-compose.yml
Created March 30, 2019 23:03
Nexus 3 Docker Compose
version: '2'
services:
nexus3:
image: sonatype/nexus3
container_name: nexus3
volumes:
- nexus-data:/nexus-data
ports:
- "8084:8081"