Doccano: I cannot access http://127.0.0.1:8000/login/ after installing it using docker

Created on 31 Jan 2020  ·  4Comments  ·  Source: doccano/doccano


I chose the 2nd option to install doccano using docker in cmd prompt after downloading docker for windows 10 pro.
I am able to start doccano from docker. But when I try to access: http://127.0.0.1:8000/login/ it does not go to the login page.

After installing doccano I cannot access the server. Please let me know what can be done as soon as possible
Capture1

```

Your Environment

  • Operating System: Windows 10 Pro
  • Python Version Used: Python 3.7
  • When you install doccano: I could'nt install it
  • How did you install doccano (Heroku button etc): I used the docker method to install it
question

Most helpful comment

I had a similar error when I used docker-compose, try this way:

docker pull chakkiworks/doccano
docker container create --name doccano \
  -e "ADMIN_USERNAME=admin" \
  -e "[email protected]" \
  -e "ADMIN_PASSWORD=password" \
  -p 8000:8000 chakkiworks/doccano
docker container start doccano

All 4 comments

Would you please provide the commands that you executed on cmd prompt?
At the same time, please confirm your network setting especially the proxy setting.

I had a similar error when I used docker-compose, try this way:

docker pull chakkiworks/doccano
docker container create --name doccano \
  -e "ADMIN_USERNAME=admin" \
  -e "[email protected]" \
  -e "ADMIN_PASSWORD=password" \
  -p 8000:8000 chakkiworks/doccano
docker container start doccano

related PR #558

Was this page helpful?
0 / 5 - 0 ratings

Related issues

dveselov picture dveselov  ·  4Comments

mathrb picture mathrb  ·  3Comments

callmeashish picture callmeashish  ·  3Comments

johnmccain picture johnmccain  ·  4Comments

gika815 picture gika815  ·  3Comments