codejedi commited on
Commit
2655f4a
·
1 Parent(s): df5a339

Update Docker Hub image name to codejediondockerhub/digital-galatea:latest

Browse files
Files changed (3) hide show
  1. DOCKER.md +10 -10
  2. README.md +7 -7
  3. docker-compose.yml +1 -1
DOCKER.md CHANGED
@@ -12,7 +12,7 @@ docker run -d \
12
  -p 7860:7860 \
13
  -e DEEPSEEK_API_KEY=your_deepseek_api_key \
14
  -e INFLECTION_AI_API_KEY=your_inflection_api_key \
15
- codejedi/digital-galatea:latest
16
  ```
17
 
18
  ### Using Docker Compose
@@ -34,7 +34,7 @@ docker build -t digital-galatea:latest .
34
  ### Build and Tag for Docker Hub
35
 
36
  ```bash
37
- docker build -t codejedi/digital-galatea:latest .
38
  ```
39
 
40
  ## Publishing to Docker Hub
@@ -46,18 +46,18 @@ docker build -t codejedi/digital-galatea:latest .
46
 
47
  2. **Tag the Image** (if not already tagged)
48
  ```bash
49
- docker tag digital-galatea:latest codejedi/digital-galatea:latest
50
  ```
51
 
52
  3. **Push to Docker Hub**
53
  ```bash
54
- docker push codejedi/digital-galatea:latest
55
  ```
56
 
57
  4. **Push with Version Tag** (optional)
58
  ```bash
59
- docker tag digital-galatea:latest codejedi/digital-galatea:v1.0.0
60
- docker push codejedi/digital-galatea:v1.0.0
61
  ```
62
 
63
  ## Environment Variables
@@ -84,7 +84,7 @@ docker run -d \
84
  -p 7860:7860 \
85
  -e DEEPSEEK_API_KEY=your_key \
86
  -e INFLECTION_AI_API_KEY=your_key \
87
- codejedi/digital-galatea:latest
88
  ```
89
 
90
  ### With Environment File
@@ -94,7 +94,7 @@ docker run -d \
94
  --name digital-galatea \
95
  -p 7860:7860 \
96
  --env-file .env \
97
- codejedi/digital-galatea:latest
98
  ```
99
 
100
  ### With Volume for Persistence
@@ -105,7 +105,7 @@ docker run -d \
105
  -p 7860:7860 \
106
  -v $(pwd)/data:/app/data \
107
  --env-file .env \
108
- codejedi/digital-galatea:latest
109
  ```
110
 
111
  ## Container Management
@@ -185,6 +185,6 @@ docker run -d \
185
  --memory="2g" \
186
  --cpus="2" \
187
  --env-file .env \
188
- codejedi/digital-galatea:latest
189
  ```
190
 
 
12
  -p 7860:7860 \
13
  -e DEEPSEEK_API_KEY=your_deepseek_api_key \
14
  -e INFLECTION_AI_API_KEY=your_inflection_api_key \
15
+ codejediondockerhub/digital-galatea:latest
16
  ```
17
 
18
  ### Using Docker Compose
 
34
  ### Build and Tag for Docker Hub
35
 
36
  ```bash
37
+ docker build -t codejediondockerhub/digital-galatea:latest .
38
  ```
39
 
40
  ## Publishing to Docker Hub
 
46
 
47
  2. **Tag the Image** (if not already tagged)
48
  ```bash
49
+ docker tag digital-galatea:latest codejediondockerhub/digital-galatea:latest
50
  ```
51
 
52
  3. **Push to Docker Hub**
53
  ```bash
54
+ docker push codejediondockerhub/digital-galatea:latest
55
  ```
56
 
57
  4. **Push with Version Tag** (optional)
58
  ```bash
59
+ docker tag digital-galatea:latest codejediondockerhub/digital-galatea:v1.0.0
60
+ docker push codejediondockerhub/digital-galatea:v1.0.0
61
  ```
62
 
63
  ## Environment Variables
 
84
  -p 7860:7860 \
85
  -e DEEPSEEK_API_KEY=your_key \
86
  -e INFLECTION_AI_API_KEY=your_key \
87
+ codejediondockerhub/digital-galatea:latest
88
  ```
89
 
90
  ### With Environment File
 
94
  --name digital-galatea \
95
  -p 7860:7860 \
96
  --env-file .env \
97
+ codejediondockerhub/digital-galatea:latest
98
  ```
99
 
100
  ### With Volume for Persistence
 
105
  -p 7860:7860 \
106
  -v $(pwd)/data:/app/data \
107
  --env-file .env \
108
+ codejediondockerhub/digital-galatea:latest
109
  ```
110
 
111
  ## Container Management
 
185
  --memory="2g" \
186
  --cpus="2" \
187
  --env-file .env \
188
+ codejediondockerhub/digital-galatea:latest
189
  ```
190
 
README.md CHANGED
@@ -36,7 +36,7 @@ Digital Galatea is a conversational AI with a dynamic emotional model. It featur
36
  The easiest way to run Digital Galatea is using the pre-built Docker image from Docker Hub:
37
 
38
  ```bash
39
- docker pull codejedi/digital-galatea:latest
40
  docker run -d \
41
  --name digital-galatea \
42
  -p 7860:7860 \
@@ -44,7 +44,7 @@ docker run -d \
44
  -e INFLECTION_AI_API_KEY=your_inflection_api_key \
45
  -e AZURE_TEXT_ANALYTICS_KEY=your_azure_key \
46
  -e AZURE_TEXT_ANALYTICS_ENDPOINT=https://your-resource.cognitiveservices.azure.com/ \
47
- codejedi/digital-galatea:latest
48
  ```
49
 
50
  Or using docker-compose (see `docker-compose.yml`):
@@ -89,7 +89,7 @@ docker run -d \
89
  -e INFLECTION_AI_API_KEY=your-inflection-key \
90
  -e AZURE_TEXT_ANALYTICS_KEY=your-azure-key \
91
  -e AZURE_TEXT_ANALYTICS_ENDPOINT=https://your-resource.cognitiveservices.azure.com/ \
92
- codejedi/digital-galatea:latest
93
  ```
94
 
95
  #### Using Environment File
@@ -122,10 +122,10 @@ docker run -d --name digital-galatea -p 7860:7860 --env-file .env codejedi/digit
122
 
123
  The image is available on Docker Hub:
124
 
125
- **Image**: `codejedi/digital-galatea:latest`
126
 
127
  ```bash
128
- docker pull codejedi/digital-galatea:latest
129
  ```
130
 
131
  ### Building and Pushing to Docker Hub
@@ -134,13 +134,13 @@ If you want to build and push your own version:
134
 
135
  ```bash
136
  # Build the image
137
- docker build -t codejedi/digital-galatea:latest .
138
 
139
  # Login to Docker Hub
140
  docker login
141
 
142
  # Push to Docker Hub
143
- docker push codejedi/digital-galatea:latest
144
  ```
145
 
146
  ## Local Development
 
36
  The easiest way to run Digital Galatea is using the pre-built Docker image from Docker Hub:
37
 
38
  ```bash
39
+ docker pull codejediondockerhub/digital-galatea:latest
40
  docker run -d \
41
  --name digital-galatea \
42
  -p 7860:7860 \
 
44
  -e INFLECTION_AI_API_KEY=your_inflection_api_key \
45
  -e AZURE_TEXT_ANALYTICS_KEY=your_azure_key \
46
  -e AZURE_TEXT_ANALYTICS_ENDPOINT=https://your-resource.cognitiveservices.azure.com/ \
47
+ codejediondockerhub/digital-galatea:latest
48
  ```
49
 
50
  Or using docker-compose (see `docker-compose.yml`):
 
89
  -e INFLECTION_AI_API_KEY=your-inflection-key \
90
  -e AZURE_TEXT_ANALYTICS_KEY=your-azure-key \
91
  -e AZURE_TEXT_ANALYTICS_ENDPOINT=https://your-resource.cognitiveservices.azure.com/ \
92
+ codejediondockerhub/digital-galatea:latest
93
  ```
94
 
95
  #### Using Environment File
 
122
 
123
  The image is available on Docker Hub:
124
 
125
+ **Image**: `codejediondockerhub/digital-galatea:latest`
126
 
127
  ```bash
128
+ docker pull codejediondockerhub/digital-galatea:latest
129
  ```
130
 
131
  ### Building and Pushing to Docker Hub
 
134
 
135
  ```bash
136
  # Build the image
137
+ docker build -t codejediondockerhub/digital-galatea:latest .
138
 
139
  # Login to Docker Hub
140
  docker login
141
 
142
  # Push to Docker Hub
143
+ docker push codejediondockerhub/digital-galatea:latest
144
  ```
145
 
146
  ## Local Development
docker-compose.yml CHANGED
@@ -2,7 +2,7 @@ version: '3.8'
2
 
3
  services:
4
  digital-galatea:
5
- image: codejedi/digital-galatea:latest
6
  container_name: digital-galatea
7
  ports:
8
  - "7860:7860"
 
2
 
3
  services:
4
  digital-galatea:
5
+ image: codejediondockerhub/digital-galatea:latest
6
  container_name: digital-galatea
7
  ports:
8
  - "7860:7860"