mirror of
https://github.com/sys-32Dev/CS3888-AVBHS.git
synced 2026-08-08 20:06:13 +00:00
Add docker-compose.yml, edit SDD.tex to add nginx
This commit is contained in:
19
docker-compose.yml
Normal file
19
docker-compose.yml
Normal file
@@ -0,0 +1,19 @@
|
||||
services:
|
||||
nginx-proxy:
|
||||
image: nginx:latest
|
||||
ports:
|
||||
- 80:80
|
||||
web:
|
||||
build: web
|
||||
# builds from DOCKERFILE in the WEB directory, which is not included in this sample, for obvious reasons.
|
||||
ports:
|
||||
- 5001:5001
|
||||
worker:
|
||||
build: worker
|
||||
# same as above but the WORKER directory this time.
|
||||
ffmpeg:
|
||||
image: linuxserver/ffmpeg:latest
|
||||
volumes:
|
||||
- ./media:/input
|
||||
|
||||
# Docker-Composes default network should suffice.
|
||||
Reference in New Issue
Block a user