-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathdockerfile.shed
68 lines (46 loc) · 978 Bytes
/
dockerfile.shed
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
# Sample image Shedfile
########################################################################
# Options for `docker build`
########################################################################
# --build-arg=[]
BUILD_ARG=()
# --cgroup-parent=CGROUP-PARENT
CGROUP_PARENT=''
# --cpuset-cpus=CPUSET-CPUS
CPUSET_CPUS=''
# --cpuset-mems=CPUSET-MEMS
CPUSET_MEMS=''
# --cpu-period=0
CPU_PERIOD=0
# --cpu-quota=0
CPU_QUOTA=0
# --cpu-shares=0
CPU_SHARES=0
# --disable-content-trust=true
DISABLE_CONTENT_TRUST='true'
# --force-rm=true|false
FORCE_RM='false'
# --isolation="default"
ISOLATION=''
# -m, --memory=""
MEMORY=''
# --memory-swap=
MEMORY_SWAP=''
# --no-cache=true|false
NO_CACHE='false'
# --pull=true|false
PULL='false'
# -q, --quiet=true|false
QUIET='false'
# --rm=true|false
RM='true'
# --shm-size=SHM-SIZE
SHM_SIZE=''
# -t, --tag=""
TAG=()
# --ulimit=[]
ULIMIT=()
# Not definable in this shedfile:
# -f, --file
# --help
# vim:syntax=sh:ai:sw=8:ts=8