adding docker and docker compose files to make app ready for deployment

This commit is contained in:
2021-09-05 20:53:21 +02:00
parent d672849a25
commit bf0e8f6306
5 changed files with 44 additions and 7 deletions

12
docker-compose.yml Normal file
View File

@@ -0,0 +1,12 @@
version: '3'
services:
ics-proxy:
container_name: ics-proxy
build: .
env_file: .env
ports:
- "8080:8080"
volumes:
- database:/app/db
volumes:
database: