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
docker compose -f docker-compose.production.yml up -d
77
+
```
78
+
79
+
Open **[http://localhost:3000](http://localhost:3000)** and sign up. That's it.
80
+
81
+
To update: `docker compose -f docker-compose.production.yml pull app && docker compose -f docker-compose.production.yml up -d`
82
+
83
+
---
84
+
85
+
### Option B — Build from source
86
+
87
+
---
88
+
65
89
### Step 1 — Install Docker
66
90
67
91
Docker packages the app, database, and file storage into containers so you don't have to install anything else manually.
@@ -153,6 +177,15 @@ Then sign in with:
153
177
154
178
When a new version of Reqcore is released, follow these steps **in order** to update your instance. Your data is safe — updates never delete the database or your uploaded files.
docker compose -f docker-compose.production.yml up -d
99
+
100
+
# 4. Open your browser
101
+
# → http://localhost:3000
102
+
```
103
+
104
+
That's it. Sign up, create your organization, and start hiring.
105
+
106
+
**Want to pin a specific version?** Edit `docker-compose.production.yml` and replace `latest` with a version tag (e.g., `1.3.0`):
107
+
108
+
```yaml
109
+
app:
110
+
image: ghcr.io/reqcore-inc/reqcore:1.3.0
111
+
```
112
+
113
+
---
114
+
115
+
## Quick Start — Build from Source (5 Minutes)
116
+
117
+
If you prefer to build from source (useful for development or customization):
85
118
86
119
```bash
87
120
# 1. Download Reqcore
@@ -98,7 +131,7 @@ docker compose up -d
98
131
# → http://localhost:3000
99
132
```
100
133
101
-
That's it. Sign up, create your organization, and start hiring.
134
+
Sign up, create your organization, and start hiring.
102
135
103
136
**Want demo data to explore first?**
104
137
@@ -217,9 +250,31 @@ Reqcore includes a built-in update system accessible from the Settings panel. No
217
250
218
251
The UI shows the progress of each update step and clearly indicates success or failure. Your data is always preserved — database migrations run automatically.
219
252
220
-
### Method 2: Update from the Command Line
253
+
### Method 2: Update from the Command Line (Pre-built Image)
254
+
255
+
If you're using the pre-built image (`docker-compose.production.yml`):
0 commit comments