File tree Expand file tree Collapse file tree 1 file changed +14
-1
lines changed Expand file tree Collapse file tree 1 file changed +14
-1
lines changed Original file line number Diff line number Diff line change @@ -6,7 +6,7 @@ There is an instance of this inbox running at https://coar-notify-inbox.fly.dev
6
6
7
7
## Running the app
8
8
9
- ### Create a Python virtual environment
9
+ ### Running in a Python virtual environment
10
10
``` bash
11
11
python3 -m venv venv
12
12
```
@@ -20,6 +20,19 @@ make install
20
20
``` bash
21
21
make start
22
22
```
23
+
24
+ ### Running via Docker
25
+
26
+ ### Build the image
27
+ ``` bash
28
+ docker build -t coar-notify-inbox .
29
+ ```
30
+
31
+ ### Install dependencies
32
+ ``` bash
33
+ docker run -p 8080:8080 coar-notify-inbox
34
+ ````
35
+
23
36
----
24
37
# ## Note on running the app outside the local Docker-compose environment
25
38
The app is configured to use MongoDB as its data layer. By default, it will attempt to connect to a MongoDB instance spun up
You can’t perform that action at this time.
0 commit comments