berangerthomas commited on
Commit
c546e9e
·
1 Parent(s): 5457771

Add readme section about docker image

Browse files
Files changed (1) hide show
  1. README.md +21 -0
README.md CHANGED
@@ -35,6 +35,27 @@ ShadowLog is a powerful Streamlit-based application designed to simplify and enh
35
 
36
  - Docker installed on your system
37
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
38
  ### Quick Start with Docker
39
 
40
  1. Clone the repository:
 
35
 
36
  - Docker installed on your system
37
 
38
+ ### Quick Start with Docker Image
39
+
40
+ If you have a prebuilt "shadowlog.tar" Docker image, you can load and run it as follows:
41
+
42
+ 1. Load the image:
43
+ ```bash
44
+ docker load -i shadowlog.tar
45
+ ```
46
+ 2. Verify the image name (usually "shadowlog") by running:
47
+ ```bash
48
+ docker images
49
+ ```
50
+ 3. Run the container:
51
+ ```bash
52
+ docker run -p 8501:8501 shadowlog
53
+ ```
54
+ 4. Navigate to:
55
+ ```
56
+ http://localhost:8501
57
+ ```
58
+
59
  ### Quick Start with Docker
60
 
61
  1. Clone the repository: