Add Dockerfile

This commit is contained in:
Dave Gallant
2022-08-21 04:50:53 +00:00
parent 9605d395f4
commit e9c470a817
15 changed files with 94 additions and 210 deletions

15
docker-compose.yml Normal file
View File

@@ -0,0 +1,15 @@
version: "3.9"
services:
frontend:
build:
dockerfile: Dockerfile
ports:
- 80:80
links:
- "backend:backend"
backend:
build:
dockerfile: Dockerfile
context: backend
ports:
- 8080:8080