Skip to content
← All posts
·1 min read

Experimenting with deno and docker

I've created another repo, this time with some examples about doing stuff with deno. Check it out here.

For some reason I wanted to learn about containerizing a simple http server, so I wrote up a small walkthrough and sample code.

I made it a bit more complicated by then creating a different example that starts two containers, each on a separate port. I'll include the walkthrough here, just for fun:

  1. Build everything.
    docker-compose build
    
  2. Start the containers.
    docker-compose up -d
    
  3. Check to confirm it's serving.
    arduino
    curl http://localhost:8081
    
    You should see:
    csharp
    Hello world from Deno on 8081! 🦕
    
    Check the other server.
    arduino
    curl http://localhost:8082
    
    You should see:
    csharp
    Hello world from Deno on 8082! 🦕
    
  4. (Optional) Stop the containers.
    docker-compose down
    

Great, look at me learning!