Skip to content

Commit 20f7bef

Browse files
authoredJan 23, 2022
build(docker): Move env variables as runtime env variables (#235)
- Remove `LANGUAGE` - Use boolean for `INSIDE_DOCKER` - Add documentation about environments variables - Use `==` instead of `=`
1 parent 9193817 commit 20f7bef

File tree

7 files changed

+55
-16
lines changed

7 files changed

+55
-16
lines changed
 

‎Dockerfile

+2-12
Original file line numberDiff line numberDiff line change
@@ -6,9 +6,6 @@ FROM ubuntu:focal-20220105 as base
66

77
USER root
88

9-
ENV INSIDE_DOCKER=1
10-
ENV LANG=en_US.UTF-8
11-
129
RUN set -e \
1310
&& export DEBIAN_FRONTEND=noninteractive \
1411
&& echo "--- Install packages ---" \
@@ -17,16 +14,13 @@ RUN set -e \
1714
git=1:2.25.1-* \
1815
locales=2.31-* \
1916
&& 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" \
2219
&& echo "--- Clean ---" \
2320
&& apt-get clean \
2421
&& apt-get autoremove \
2522
&& rm -rf /var/lib/apt/lists/*
2623

27-
# Added here instead before `locale-gen` to avoid warnings
28-
ENV LC_ALL=${LANG}
29-
3024
ENV USERNAME=app-user
3125
ARG GROUPNAME=${USERNAME}
3226
ARG USER_UID=1000
@@ -95,8 +89,6 @@ RUN find /usr/local/bin/. -xtype l -exec rm {} \; 2>/dev/null
9589

9690
USER ${USERNAME}
9791

98-
ENV CI=true
99-
10092
# —————————————————————————————————————————————— #
10193
# dev #
10294
# —————————————————————————————————————————————— #
@@ -122,8 +114,6 @@ RUN set -e \
122114
&& apt-get autoremove \
123115
&& rm -rf /var/lib/apt/lists/*
124116

125-
ENV CI=false
126-
127117
USER ${USERNAME}
128118

129119
# —————————————————————————————————————————————— #

‎docker-compose.ci.yml

+2
Original file line numberDiff line numberDiff line change
@@ -5,3 +5,5 @@ services:
55
image: aifrak/template-repo:ci
66
build:
77
target: ci
8+
environment:
9+
- CI=true

‎docker-compose.dev.yml

+2
Original file line numberDiff line numberDiff line change
@@ -5,3 +5,5 @@ services:
55
image: aifrak/template-repo:dev
66
build:
77
target: dev
8+
environment:
9+
- CI=false

‎docker-compose.yml

+3
Original file line numberDiff line numberDiff line change
@@ -11,5 +11,8 @@ services:
1111
USER_GID: ${USER_GID:-1000}
1212
user: ${USER_UID:-1000}:${USER_GID:-1000}
1313
command: sleep infinity
14+
environment:
15+
- INSIDE_DOCKER=true
16+
- LANG=en_US.UTF-8
1417
volumes:
1518
- .:/app

‎docs/docker.md

+43
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,43 @@
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 -->

‎run

+2-3
Original file line numberDiff line numberDiff line change
@@ -68,17 +68,16 @@ EOF
6868
# —————————————————————————————————————————————— #
6969

7070
# Check if the command is from the docker container or the host.
71-
# INSIDE_DOCKER=1 is set from the Dockerfile
7271
function is_inside_docker {
73-
if [[ ${INSIDE_DOCKER:-0} -eq 1 ]]; then
72+
if [[ ${INSIDE_DOCKER:-false} == true ]]; then
7473
return 0
7574
else
7675
return 1
7776
fi
7877
}
7978

8079
function is_ci {
81-
if [[ "${CI:-false}" = true ]]; then
80+
if [[ "${CI:-false}" == true ]]; then
8281
return 0
8382
else
8483
return 1

‎spellcheck/dictionaries/workspace.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
# Ascending sort, case insensitive
21
!hte
32
calver
43
conventionalcommits
@@ -9,6 +8,7 @@ dotfiles
98
GROUPNAME
109
infile
1110
noreply
11+
POSIX
1212
prealpha
1313
preminor
1414
prepatch

0 commit comments

Comments
 (0)