Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
21 changes: 20 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -26,18 +26,37 @@ SMTP_USERNAME=example@gmail.com
SMTP_PASSWORD=aaaabbbbccccdddd
```

2. Build the Docker image:
2. Pull the Docker image:

```bash
docker pull ghcr.io/cactusbros/smaila:latest # or specific version like v0.2.2
```

Or manually Build the image:

```bash
git clone https://github.com/CactusBros/smaila.git
cd smaila
docker build -t smaila .
```

3. Run the container:

```bash
docker run -p 8080:8080 --env-file .env ghcr.io/cactusbros/smaila:latest # or specific version like v0.2.2
```

Or using the manually built image:

```bash
docker run -p 8080:8080 --env-file .env smaila
```

> 💡 **Note**: If your `.env` file is not in the current directory, provide the full path to it using the `--env-file` flag, like:
> ```bash
> docker run -p 8080:8080 --env-file /path/to/.env smaila
> ```

## 📘 API Documentation

After running the container, access the interactive API docs at:
Expand Down