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
Copy file name to clipboardExpand all lines: README.md
+4-11Lines changed: 4 additions & 11 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -30,24 +30,17 @@ This project is open-sourced software licensed under the [MIT license](https://g
30
30
31
31
## Contribute
32
32
### With Container Engine
33
-
If you use a container engine like [🦦 Podman](https://podman.io/) or [🐳 Docker](https://app.docker.com/), here are the steps that you can make:
33
+
> [!NOTE]
34
+
> If you use [🐳 Docker](https://app.docker.com/) instead of [🦦 Podman](https://podman.io/), just replace `podman-compose` with `docker compose`, and `podman` with `docker` in code examples below.
34
35
35
36
#### Build an Image
36
-
To build an image, navigate to the root of the project and run this command if you use Docker:
37
-
```bash
38
-
docker compose build
39
-
```
40
-
For Podman, run this:
37
+
To build an image, navigate to the root of the project and run this command:
41
38
```bash
42
39
podman-compose build
43
40
```
44
41
45
42
#### Run the Container
46
-
To run a container, navigate to the root of the project and run this Docker command to enter the Linux container with Go installed:
47
-
```bash
48
-
docker compose run --rm app
49
-
```
50
-
For Podman, run this:
43
+
To run a container, navigate to the root of the project and run this command to enter the Linux container with Go installed:
0 commit comments