From 21521f05f4cd66b67890465535b373f5307893dd Mon Sep 17 00:00:00 2001 From: Syunsuke Komma Date: Thu, 3 Jul 2014 15:51:48 +0900 Subject: [PATCH] move docker-busybox-data repository to busybox-data directory --- busybox-data/Dockerfile | 3 +++ busybox-data/README.md | 3 +++ 2 files changed, 6 insertions(+) create mode 100644 busybox-data/Dockerfile create mode 100644 busybox-data/README.md diff --git a/busybox-data/Dockerfile b/busybox-data/Dockerfile new file mode 100644 index 0000000..5fbe0b1 --- /dev/null +++ b/busybox-data/Dockerfile @@ -0,0 +1,3 @@ +FROM busybox:latest +MAINTAINER Syunsuke Komma +RUN find /var -type l -exec rm {} \; -exec mkdir {} \; diff --git a/busybox-data/README.md b/busybox-data/README.md new file mode 100644 index 0000000..9f84b5e --- /dev/null +++ b/busybox-data/README.md @@ -0,0 +1,3 @@ +Docker image suitable for data volume container, based on official busybox image + +Derived from busybox:latest, with replacing symbolic links to plain directories on /var.