You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+15
Original file line number
Diff line number
Diff line change
@@ -27,6 +27,21 @@ chmod +x gkeep2notion.py
27
27
28
28
### Preventing "Authentication failed" on some systems
29
29
30
+
____
31
+
#### Running inside of a Docker Container
32
+
In order to use the `gkeepapi` dependency, you'll need to run it inside of a docker container that is compatible with it. Otherwise you'll most likely run into an "Authentication failed" error.
33
+
34
+
1. Build the Docker Image
35
+
```
36
+
docker build -t gkeep2notion_image .
37
+
```
38
+
2. Run the Docker Container
39
+
```
40
+
docker run -it --name gkeep2notion_container gkeep2notion_image /bin/bash
41
+
```
42
+
3. Now you should be inside the container and the rest of the guide should work
43
+
____
44
+
30
45
On some systems the authentication fails even with valid credentials. This may happen because of three reasons:
0 commit comments