mirror of
https://github.com/actualbudget/actual.git
synced 2026-03-09 03:32:54 -05:00
19 lines
411 B
YAML
19 lines
411 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
|
|
environment:
|
|
- HTTPS
|
|
ports:
|
|
- '3001:3001'
|
|
volumes:
|
|
- '.:/app'
|
|
restart: 'no'
|
|
|