Start dockerizing OBS

This commit is contained in:
Micha Albert 2024-08-05 14:02:41 -04:00
parent 8308b22d89
commit af43bbc916
No known key found for this signature in database
GPG key ID: 33149159A417BBCE
10 changed files with 114 additions and 2 deletions

18
docker-compose.yml Normal file
View file

@ -0,0 +1,18 @@
version: '2'
services:
web-frontend:
build:
# build from Dockerfile
context: ./tiling-frontend
dockerfile: Dockerfile
volumes:
- tiling_frontend_build:/usr/src/app/dist
obs:
build:
context: ./obs
dockerfile: Dockerfile
volumes:
- tiling_frontend_build:/home/obs/html
volumes:
tiling_frontend_build: