Initial commit
This commit is contained in:
commit
6637a739f7
2 changed files with 41 additions and 0 deletions
20
Dockerfile
Normal file
20
Dockerfile
Normal file
|
@ -0,0 +1,20 @@
|
||||||
|
FROM debian:latest
|
||||||
|
|
||||||
|
# Avoid prompts from apt
|
||||||
|
ENV DEBIAN_FRONTEND=noninteractive
|
||||||
|
|
||||||
|
# Update and install packages
|
||||||
|
RUN apt-get update && apt-get install -y \
|
||||||
|
curl \
|
||||||
|
wget \
|
||||||
|
git \
|
||||||
|
iproute2 \
|
||||||
|
iputils-ping \
|
||||||
|
nmap \
|
||||||
|
vim \
|
||||||
|
# Add any other packages you need here \
|
||||||
|
&& apt-get clean \
|
||||||
|
&& rm -rf /var/lib/apt/lists/*
|
||||||
|
|
||||||
|
# Reset environment variable
|
||||||
|
ENV DEBIAN_FRONTEND=
|
21
README.md
Normal file
21
README.md
Normal file
|
@ -0,0 +1,21 @@
|
||||||
|
# This is a dockerfile for creating a plugable custom docker-image for various network troubleshooting-tasks
|
||||||
|
|
||||||
|
|
||||||
|
Usage:
|
||||||
|
|
||||||
|
Clone git-repo
|
||||||
|
|
||||||
|
```
|
||||||
|
git clone git@forge.dmz.skyfritt.net:Symbiose/debian-armyknife.git
|
||||||
|
|
||||||
|
```
|
||||||
|
|
||||||
|
Build image (from inside repo-folder)
|
||||||
|
|
||||||
|
|
||||||
|
```
|
||||||
|
|
||||||
|
docker build -t debian-armyknife:custom .
|
||||||
|
|
||||||
|
|
||||||
|
```
|
Loading…
Add table
Reference in a new issue