File tree 7 files changed +55
-16
lines changed
7 files changed +55
-16
lines changed Original file line number Diff line number Diff line change @@ -6,9 +6,6 @@ FROM ubuntu:focal-20220105 as base
6
6
7
7
USER root
8
8
9
- ENV INSIDE_DOCKER=1
10
- ENV LANG=en_US.UTF-8
11
-
12
9
RUN set -e \
13
10
&& export DEBIAN_FRONTEND=noninteractive \
14
11
&& echo "--- Install packages ---" \
@@ -17,16 +14,13 @@ RUN set -e \
17
14
git=1:2.25.1-* \
18
15
locales=2.31-* \
19
16
&& echo "--- Add locales ---" \
20
- && sed -i "/${LANG} /s/^# //g" /etc/locale.gen \
21
- && locale-gen ${LANG} \
17
+ && sed -i "/en_US.UTF-8 /s/^# //g" /etc/locale.gen \
18
+ && locale-gen "en_US.UTF-8" \
22
19
&& echo "--- Clean ---" \
23
20
&& apt-get clean \
24
21
&& apt-get autoremove \
25
22
&& rm -rf /var/lib/apt/lists/*
26
23
27
- # Added here instead before `locale-gen` to avoid warnings
28
- ENV LC_ALL=${LANG}
29
-
30
24
ENV USERNAME=app-user
31
25
ARG GROUPNAME=${USERNAME}
32
26
ARG USER_UID=1000
@@ -95,8 +89,6 @@ RUN find /usr/local/bin/. -xtype l -exec rm {} \; 2>/dev/null
95
89
96
90
USER ${USERNAME}
97
91
98
- ENV CI=true
99
-
100
92
# —————————————————————————————————————————————— #
101
93
# dev #
102
94
# —————————————————————————————————————————————— #
@@ -122,8 +114,6 @@ RUN set -e \
122
114
&& apt-get autoremove \
123
115
&& rm -rf /var/lib/apt/lists/*
124
116
125
- ENV CI=false
126
-
127
117
USER ${USERNAME}
128
118
129
119
# —————————————————————————————————————————————— #
Original file line number Diff line number Diff line change @@ -5,3 +5,5 @@ services:
5
5
image : aifrak/template-repo:ci
6
6
build :
7
7
target : ci
8
+ environment :
9
+ - CI=true
Original file line number Diff line number Diff line change @@ -5,3 +5,5 @@ services:
5
5
image : aifrak/template-repo:dev
6
6
build :
7
7
target : dev
8
+ environment :
9
+ - CI=false
Original file line number Diff line number Diff line change @@ -11,5 +11,8 @@ services:
11
11
USER_GID : ${USER_GID:-1000}
12
12
user : ${USER_UID:-1000}:${USER_GID:-1000}
13
13
command : sleep infinity
14
+ environment :
15
+ - INSIDE_DOCKER=true
16
+ - LANG=en_US.UTF-8
14
17
volumes :
15
18
- .:/app
Original file line number Diff line number Diff line change
1
+ # Docker
2
+
3
+ ## ` app ` service
4
+
5
+ ### Environment variables
6
+
7
+ <!-- markdownlint-disable no-inline-html-->
8
+
9
+ <table >
10
+ <tr >
11
+ <th>Name</th>
12
+ <th>Description</th>
13
+ <th align="center">Custom</th>
14
+ <th>Possible value(s)</th>
15
+ </tr >
16
+ <tr >
17
+ <td><code>CI</code></td>
18
+ <td>Check if <code>./run</code> is executed on a CI environment.</td>
19
+ <td align="center">✅</td>
20
+ <td><code>true</code> or <code>false</code></td>
21
+ </tr >
22
+ <tr >
23
+ <td><code>INSIDE_DOCKER</code></td>
24
+ <td>Check if <code>./run</code> is executed in a docker container.</td>
25
+ <td align="center">✅</td>
26
+ <td><code>true</code> or <code>false</code></td>
27
+ </tr >
28
+ <tr >
29
+ <td><code>LANG</code></td>
30
+ <td>System variable for locales.</td>
31
+ <td align="center">❌</td>
32
+ <td>
33
+ <ul>
34
+ <li><code>en_US.UTF-8</code> (recommended)</li>
35
+ <li><code>C</code></li>
36
+ <li><code>C.UTF-8</code></li>
37
+ <li><code>POSIX</code></li>
38
+ </ul>
39
+ </td>
40
+ </tr >
41
+ </table >
42
+
43
+ <!-- markdownlint-enable -->
Original file line number Diff line number Diff line change 68
68
# —————————————————————————————————————————————— #
69
69
70
70
# Check if the command is from the docker container or the host.
71
- # INSIDE_DOCKER=1 is set from the Dockerfile
72
71
function is_inside_docker {
73
- if [[ ${INSIDE_DOCKER:- 0} -eq 1 ]]; then
72
+ if [[ ${INSIDE_DOCKER:- false} == true ]]; then
74
73
return 0
75
74
else
76
75
return 1
77
76
fi
78
77
}
79
78
80
79
function is_ci {
81
- if [[ " ${CI:- false} " = true ]]; then
80
+ if [[ " ${CI:- false} " == true ]]; then
82
81
return 0
83
82
else
84
83
return 1
Original file line number Diff line number Diff line change 1
- # Ascending sort, case insensitive
2
1
!hte
3
2
calver
4
3
conventionalcommits
9
8
GROUPNAME
10
9
infile
11
10
noreply
11
+ POSIX
12
12
prealpha
13
13
preminor
14
14
prepatch
You can’t perform that action at this time.
0 commit comments