You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
>`Cannot connect to the Docker daemon at unix:///var/run/docker.sock. Is the docker daemon running?`
106
+
>`docker: 'compose' is not a docker command.`
89
107
>
90
-
>please reference
91
-
> this [help article](https://github.com/abiosoft/colima/blob/main/docs/FAQ.md#cannot-connect-to-the-docker-daemon-at-unixvarrundockersock-is-the-docker-daemon-running).
108
+
> add the following JSON to your `~/.docker/config.json file.`
109
+
> ```json
110
+
> "cliPluginsExtraDirs": [
111
+
> "/opt/homebrew/lib/docker/cli-plugins"
112
+
> ]
113
+
> ```
114
+
>
115
+
> ---
92
116
93
117
### DBeaver
94
118
@@ -137,46 +161,30 @@ Once your repository is cloned locally, you are all set to move on to the next s
137
161
138
162
## Database Setup
139
163
140
-
In order to initialize the database, the following setup will be required.
141
-
142
-
- First, ensure that you have installed and configured Podman Desktop correctly. Then, open a
143
-
terminal and run the following commands to start a podman instance:
164
+
To reduce developer friction, we have provided a docker-compose file that will create a PostgreSQL
165
+
databse instance for you. To start this container, we first need to create a `.env` file. To do
166
+
this, running the following command to make a copy of the `.env.local` file:
144
167
145
-
```
146
-
podman machine init
147
-
podman machine start
168
+
```bash
169
+
# copy the .env.local file to .env
170
+
cp .env.local .env
148
171
```
149
172
150
-
- Next, pull the PostgreSQL image by running the following command:
173
+
Next you can modify the username and password in the `.env` file if you would like to change it from
174
+
the default. We have already added the `.env` file to the `.gitignore` file so that it will not be
175
+
pushed to the repository.
151
176
152
-
```
153
-
podman pull docker.io/library/postgres:latest
154
-
```
177
+
To start the database, run the following command:
155
178
156
-
- You are then able to create a Podman container to store the database in. Run the following command
0 commit comments