We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b21f323 commit 51352c5Copy full SHA for 51352c5
images/build_all.sh
@@ -0,0 +1,22 @@
1
+#!/bin/sh
2
+
3
+function build {
4
+ echo "Entering $1"
5
+ echo "Building $1/Dockerfile"
6
+ cd $1
7
+ ./build.sh
8
+ echo
9
+}
10
11
+images=(
12
+ 'consul-arm'
13
+ 'docker-arm'
14
+ 'redis-arm'
15
+ 'swarm-arm'
16
+)
17
18
+for project in "${images[@]}"
19
+do
20
+ build $project
21
+done
22
pkg/docker.service
@@ -0,0 +1,15 @@
+[Unit]
+Description=Docker Application Container Engine
+Documentation=https://docs.docker.com
+After=network.target docker.socket
+Requires=docker.socket
+[Service]
+ExecStart=/usr/bin/docker -d --exec-opt native.cgroupdriver=cgroupfs -H fd://
+MountFlags=slave
+LimitNOFILE=1048576
+LimitNPROC=1048576
+LimitCORE=infinity
+[Install]
+WantedBy=multi-user.target
0 commit comments