0
0
Fork 0

Add the neccesary docker files for operation

This commit is contained in:
Oliver-Akins 2023-08-26 20:42:01 -06:00
parent d7ef85fd30
commit 2d8d6f4aa0
4 changed files with 44 additions and 39 deletions

16
docker-compose.yaml Normal file
View file

@ -0,0 +1,16 @@
version: "3"
name: "chatman"
services:
api:
build:
dockerfile: "dockerfile"
target: "dev"
ports:
- "6969:6969"
environment:
NODE_ENV: "dev"
volumes:
- "./data.json:/app/data.json"
- "./site:/app/site"
- "./word-lists:/app/word-lists"