File tree Expand file tree Collapse file tree 1 file changed +23
-0
lines changed Expand file tree Collapse file tree 1 file changed +23
-0
lines changed Original file line number Diff line number Diff line change @@ -12,6 +12,29 @@ In this docker repository, we have built the following images:
12
12
13
13
- [ cslant/dev-php83] ( https://hub.docker.com/r/cslant/dev-php83 )
14
14
- [ cslant/dev-worker83] ( https://hub.docker.com/r/cslant/dev-worker83 )
15
+ - [ cslant/dev-mysql] ( https://hub.docker.com/r/cslant/dev-mysql )
15
16
- [ cslant/dev-node22] ( https://hub.docker.com/r/cslant/dev-node22 )
16
17
- [ cslant/dev-nginx] ( https://hub.docker.com/r/cslant/dev-nginx )
17
18
- [ cslant/dev-postgres] ( https://hub.docker.com/r/cslant/dev-postgres )
19
+
20
+ ## Prerequisites
21
+
22
+ First, copy the ` .env.example ` file to ` .env ` and update the values.
23
+
24
+ ``` bash
25
+ envsubst < .env.example > .env
26
+ ```
27
+
28
+ If you don't have ` envsubst ` command, you can use the following command:
29
+
30
+ ``` bash
31
+ cp .env.example .env
32
+ ```
33
+
34
+ ### 💻 Start in Mac with arm64
35
+
36
+ To run as amd64. You need to set the default platform to ` linux/amd64 ` :
37
+
38
+ ``` shell
39
+ export DOCKER_DEFAULT_PLATFORM=linux/amd64
40
+ ```
You can’t perform that action at this time.
0 commit comments