Files
actual/docker-compose.yml
Jonas De Kegel 15b51921b2 Add .devcontainer (#1032)
Adds support for [devcontainers](https://containers.dev/), this should
make onboarding easier and should allow (especially simpler)
contributions entirely online via Github Codespaces 🚀
2023-05-15 11:04:28 -04:00

17 lines
380 B
YAML

###################################################
# This creates and stands up the development
# docker container. Depends on the Dockerfile and
# docker-start.sh files.
###################################################
services:
actual-development:
build: .
image: actual-development
ports:
- '3001:3001'
volumes:
- '.:/app'
restart: 'no'