Add dockerfile

This commit is contained in:
Ethan O'Brien
2024-07-03 12:27:21 -05:00
parent ec8aad5fde
commit a5c5d356bf
2 changed files with 41 additions and 0 deletions

15
docker/docker-compose.yml Normal file
View File

@ -0,0 +1,15 @@
version: '3'
services:
sif2-ew:
image: sif2-ew:latest
container_name: sif2-ew
build:
dockerfile: "./Dockerfile"
environment:
PORT: 8081
DIRECTORY: /data
ports:
- 8081:8081
volumes:
- ./data:/data
restart: unless-stopped