Then, create an `.env` file with variables in the following format(see [./config/.env.example](https://github.com/doccano/doccano/blob/master/config/.env.example)):
Then, create an `.env` file with variables in the following format(see [./config/.env.example](https://github.com/doccano/doccano/blob/master/config/.env.example)):
```plain
# platform settings
@ -170,7 +129,7 @@ POSTGRES_DB=doccano
#### Production
After running the following command, access <http://0.0.0.0/>.
After running the following command, access <http://127.0.0.1/>.
```bash
docker-compose -f docker-compose.prod.yml --env-file ./config/.env.example up
@ -178,7 +137,7 @@ docker-compose -f docker-compose.prod.yml --env-file ./config/.env.example up
#### Development
After running the following command, access <http://127.0.0.1:3000/>. If you want to use the admin site, please access <http://127.0.0.1:8000/admin/>.
After running the following command, access <http://127.0.0.1:8000/>. If you want to use the admin site, please access <http://127.0.0.1:8000/admin/>.
```bash
docker-compose -f docker-compose.dev.yml --env-file ./config/.env.example up