# Beginner trying to figure it all out

**URL:** https://discourse.roots.io/t/beginner-trying-to-figure-it-all-out/22110
**Category:** bedrock
**Created:** 2022-01-17T22:02:27Z
**Posts:** 5
**Showing post:** 4 of 5

## Post 4 by @Atari — 2022-01-19T03:26:31Z

I am currently using [Lando](https://lando.dev/) to spin up my dev environments for Bedrock/Sage project.

here is my .lando.yml file

```
name: example
env_file:
  - .env
recipe: wordpress
proxy:
  appserver_nginx: # Optional: if you exclude this, Lando will serve it as bedrock.lndo.site
    - example.test
  mailhog:
    - mail.example.test
  theme: # Optional: add this if you include the Sage specific config down below
    - localhost:3000
    - localhost:3001
config:
  php: '8.0'
  composer_version: 2-latest
  via: nginx
  webroot: web
  database: mariadb
  xdebug: true

# Add the following if you plan to use Sage as a starter theme
services:
  mailhog:
    type: mailhog
    portforward: true
    hogfrom:
      - appserver_nginx
  appserver_nginx:
    scanner: false
  theme:
    type: node:16
    overrides:
      ports:
        - 3000:3000
        - 3001:3001
tooling:
  yarn:
    service: theme
```

**Some references**

Outdated but you should still read

> **[Dockerize Local Bedrock & Sage Development with Lando](https://discourse.roots.io/t/dockerize-local-bedrock-sage-development-with-lando/14288)**
>
> Originally published at: https://roots.io/guides/dockerize-local-bedrock-and-sage-development-with-lando/ I’ve been pretty obsessed with using Docker for local development lately. I love how fast and lightweight it is and how I can run...

Good Read  
[https://discourse.roots.io/t/dockerize-local-bedrock-sage-development-with-lando/14288/46](https://discourse.roots.io/t/dockerize-local-bedrock-sage-development-with-lando/14288/46)

---

_[View the full topic](https://discourse.roots.io/t/beginner-trying-to-figure-it-all-out/22110)._
