mirror of
https://github.com/moby/moby.git
synced 2022-11-09 12:21:53 -05:00
44fe8cbbd1
These were found using `git grep -nE '[^-a-zA-Z0-9<>]-[a-zA-Z0-9]{2}'` (fair warning: _many_ false positives there). Docker-DCO-1.1-Signed-off-by: Andrew Page <admwiggin@gmail.com> (github: tianon)
15 lines
490 B
Docker
15 lines
490 B
Docker
#
|
|
# Build: docker build -t apt-cacher .
|
|
# Run: docker run -d -p 3142:3142 --name apt-cacher-run apt-cacher
|
|
#
|
|
# and then you can run containers with:
|
|
# docker run -t -i --rm -e http_proxy http://dockerhost:3142/ debian bash
|
|
#
|
|
FROM ubuntu
|
|
MAINTAINER SvenDowideit@docker.com
|
|
|
|
VOLUME ["/var/cache/apt-cacher-ng"]
|
|
RUN apt-get update ; apt-get install -yq apt-cacher-ng
|
|
|
|
EXPOSE 3142
|
|
CMD chmod 777 /var/cache/apt-cacher-ng ; /etc/init.d/apt-cacher-ng start ; tail -f /var/log/apt-cacher-ng/*
|