···11-## Type of change
22-33-<!--- What types of changes does your code introduce? Put an `x` in the box that apply: -->
44-55-- [ ] ๐ Bug fix
66-- [ ] ๐ New feature
77-- [ ] ๐จ Breaking change
88-- [ ] ๐ Refactoring / dependency upgrade / documentation
99-1010-## Description
1111-1212-<!--- Describe your changes in detail -->
1313-1414-### A picture tells a thousand words (if any)
1515-1616-### Before this PR
1717-1818-{Please add a screenshot here}
1919-2020-### After this PR
2121-2222-{Please add a screenshot here}
2323-2424-### Related Issue (optional)
2525-2626-<!--- Please link to the issue here: -->11+## Type of change
22+33+<!--- What types of changes does your code introduce? Put an `x` in the box that apply: -->
44+55+- [ ] ๐ Bug fix
66+- [ ] ๐ New feature
77+- [ ] ๐จ Breaking change
88+- [ ] ๐ Refactoring / dependency upgrade / documentation
99+1010+## Description
1111+1212+<!--- Describe your changes in detail -->
1313+1414+### A picture tells a thousand words (if any)
1515+1616+### Before this PR
1717+1818+{Please add a screenshot here}
1919+2020+### After this PR
2121+2222+{Please add a screenshot here}
2323+2424+### Related Issue (optional)
2525+2626+<!--- Please link to the issue here: -->
+28
apps/server/README.md
···1212```bash
1313flyctl deploy --config apps/server/fly.toml --dockerfile apps/server/Dockerfile
1414```
1515+1616+## Docker
1717+1818+Build the docker image locally
1919+2020+```bash
2121+docker build . -t registry.fly.io/openstatus-docker:openstatus-docker-v0 --file ./apps/server/Dockerfile --platform linux/amd64
2222+```
2323+2424+if you want to run the docker image locally
2525+2626+```bash
2727+docker run -p 3000:3000 registry.fly.io/openstatus-docker:openstatus-docker-v0
2828+```
2929+3030+Push to Fly Registry
3131+3232+```bash
3333+docker push registry.fly.io/openstatus-docker:openstatus-docker-v0
3434+3535+```
3636+3737+Deploy to Fly
3838+3939+```bash
4040+flyctl deploy --app openstatus-docker \
4141+ --image registry.fly.io/openstatus-docker:openstatus-docker-v0
4242+```