docker

Published

Tags

Gitpod & Snowpack

Hey all, For my F# Advent calendar entry of 2020 I messed around with Gitpod, Snowpack & Fable. You can find the result in this video: Take care everyone! Cheers, nojaf Photo by Annie Spratt on Unsplash

Published

Tags

Fantomas rejuvenated: .NET cli tool

Introduction As part of the F# mentorship program my mentor Anthony Lloyd and I have been working on the Fantomas project. Fantomas is like prettier or elm-format but for F#. It was originally created by Anh-Dung Phan and people have suggested that it could be a part of the F# Compiler Service. Fantomas is like prettier or elm-format but for F#. .NET Core The source code of Fantomas is quite advanced so our approach is to focus first on improving the project in general. We noticed it was a bit old in terms of Visual Studio version and dependencies, so we…

Published

Tags

Building Fable apps inside a Docker container

Introduction Want to use Docker to develop Fable applications? What if I told you it isn’t all that difficult? TLDR; How to user Docker with Fable. Docker So the first step with Docker images is that you check whether a suiting image that fits your needs already exists. When I checked Docker Hub for any recent images with the Fable tool chain I didn’t really find anything that works with Fable 1.x. I accepted the fact that I would have to create the image myself. If you check the docs for requirements, we’ll need: .NET Core Node js Mono Docker compose…

Published

Tags

Running Laravel projects on Windows 10 using Docker

Introduction Nowadays I’m into PHP & Docker. Yep that’s right this .NET boy is going wild! As I’m learning all these new concepts it became clear that you don’t really start from scratch with PHP but you choose a framework. I ended up choosing Laravel because it is popular, has a beautiful website and there is this thing called Laracasts. Laracasts - It’s Kinda Like Netflix for Your Career! Basic Task List In this blogpost we’re going to create the Basic Task List example from the Laravel documentation using LaraDock instead of Homestead on Vagrant. To…