Skip to content

Commit 2d8b71b

Browse files
author
root
committed
README
1 parent fec60de commit 2d8b71b

File tree

1 file changed

+2
-6
lines changed

1 file changed

+2
-6
lines changed

README.md

Lines changed: 2 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -71,12 +71,8 @@ A: I use WebSocket because it allows good performance: having 100 users at the s
7171
Q: Tech question: why use `dumbdbm` on server?
7272
A: Because it works. If you know a Python database module that 1) stores data in a file (i.e. no database server needed), 2) is lightweight, 3) allows inserts / queries with a dictionary syntax (`db['hello'] = 'blah'`), and if possible allows integers as dictionary keys, I'm interested!
7373

74-
Q: Tech question: How can I run the project inside a Docker container ?
75-
A: There is a Dockerfile in the root of the project directory. After clone, simply run the following
76-
```
77-
docker build -t talktalktalk .
78-
```
79-
Then the following command to run it as a container :
74+
Q: Tech question: How can I run the project inside a Docker container?
75+
A: There is a Dockerfile in the root of the project directory. After clone, simply run `docker build -t talktalktalk .`. Then the following command to run it as a container:
8076
```
8177
docker run -d --name=talktalktalk -p 9000:9000 talktalktalk
8278
```

0 commit comments

Comments
 (0)