(unknown)

Results 18 comments of (unknown)

Choosing language and concept should work in any order. I just forgot that the website currently picks the concept first. ``` | FROM | CONCEPT | TO | | Java...

So I got the project running on my local machine but none of my changes are showing up. I'm looking at localhost:8000 on incognito. I'm not sure what's happening here.

@geekygirlsarah The app starts up with no problems. But nothing happens if I modify the json files. ![image](https://user-images.githubusercontent.com/15680274/137816035-cdd07ad3-92dc-4ef8-8b15-ecb77c046ec7.png) ![image](https://user-images.githubusercontent.com/15680274/137815891-b65c35d2-8967-4771-9ed4-4650b9030e39.png)

@geekygirlsarah I'm running the container with this command ```docker run --name ct-container -ti -p 8000:8000 -v `pwd`:/code ct-image```

oh wait, maybe I replace `pwd` with something else. I did not notice that earlier.

I'm not experienced with Docker so I took the most obvious action and copypasted that command into VS Code

The Installation page is NOT HELPFUL Sorry, let me retrace my steps 1. I run `docker build -t ct-image .` 2. I run the command ```docker run --name ct-container -ti...

`docker-compose up` leads to the following error message: ``` [+] Building 0.1s (2/2) FINISHED => [internal] load build definition from Dockerfile 0.0s => => transferring dockerfile: 32B 0.0s => [internal]...

Okay, I got docker-compose to work. I modified `docker-compose.yml` to look like this: ``` version: "3" services: app: build: context: . dockerfile: Dockerfile container_name: codethesaurus-container ports: - "8000:8000" volumes: -...