added a basic docker-compose file

This commit is contained in:
Kaustubh Shirpurkar 2022-04-30 07:58:41 +05:30 committed by James Long
parent 51a2cb91f2
commit 2acc034fc1

12
docker-compose.yml Normal file
View file

@ -0,0 +1,12 @@
version: "3"
services:
actual_server:
container_name: actual_server
build:
context: ./
dockerfile: Dockerfile
ports:
- "5006:5006"
volumes:
- ./data:/data
restart: unless-stopped