Merge pull request #241 from jazwiecki/add-docker-compose

Add minimal docker-compose.yml
This commit is contained in:
Alex Sosnovskiy 2021-05-11 11:45:31 +03:00 committed by GitHub
commit 2b712b3d33
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

10
docker-compose.yml Normal file
View File

@ -0,0 +1,10 @@
version: '3'
services:
peerjs:
build: .
container_name: peerjs_server
expose:
- 9000
ports:
- "9000:9000"