Browse Source

Update README.md

Bastien Sevajol 6 years ago
parent
commit
961e17357c
No account linked to committer's email
1 changed files with 1 additions and 38 deletions
  1. 1 38
      README.md

+ 1 - 38
README.md View File

@@ -107,7 +107,7 @@ Make sure `docker.service` is started correctly.
107 107
 
108 108
     systemctl status docker.service
109 109
 
110
-**If you want to use the latest stable image: **
110
+Then use image like following (adapt volume paths or ports as you want):
111 111
 
112 112
     sudo docker run \
113 113
         -e DATABASE_TYPE=sqlite \
@@ -118,43 +118,6 @@ Make sure `docker.service` is started correctly.
118 118
         -v /var/tracim/var:/var/tracim \
119 119
         algoo/tracim  # docker image: tracim:unstable for development version, tracim_test:latest for nightly builds
120 120
 
121
-**For another case, you can find exemple here:**
122
-
123
-* You can use `algoo/tracim:<$tag>` stable image (replace `<$tag>` by the tag you want to use):
124
-
125
-        sudo docker run \
126
-            -e DATABASE_TYPE=sqlite \
127
-            -p 80:80 \
128
-            -p 3030:3030 \
129
-            -p 5232:5232 \
130
-            -v /var/tracim/etc:/etc/tracim \
131
-            -v /var/tracim/var:/var/tracim \
132
-            algoo/tracim:<$tag>
133
-
134
-
135
-* You can use `algoo/tracim:unstable` image:
136
-
137
-        sudo docker run \
138
-            -e DATABASE_TYPE=sqlite \
139
-            -p 80:80 \
140
-            -p 3030:3030 \
141
-            -p 5232:5232 \
142
-            -v /var/tracim/etc:/etc/tracim \
143
-            -v /var/tracim/var:/var/tracim \
144
-            algoo/tracim:unstable
145
-
146
-
147
-* You can use `algoo/tracim_testing:latest` image:
148
-
149
-        sudo docker run \
150
-            -e DATABASE_TYPE=sqlite \
151
-            -p 80:80 \
152
-            -p 3030:3030 \
153
-            -p 5232:5232 \
154
-            -v /var/tracim/etc:/etc/tracim \
155
-            -v /var/tracim/var:/var/tracim \
156
-            algoo/tracim_testing
157
-
158 121
 
159 122
 All docker images are available here : https://hub.docker.com/u/algoo/
160 123