Files
actual/docker-compose.yml
2023-05-11 09:55:53 -04:00

17 lines
378 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