mirror of
https://github.com/actualbudget/actual.git
synced 2026-03-11 12:43:09 -05:00
Adds support for [devcontainers](https://containers.dev/), this should make onboarding easier and should allow (especially simpler) contributions entirely online via Github Codespaces 🚀
17 lines
380 B
YAML
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'
|
|
|