Commit 48e9a7492fbd7f29c2329437d6c795f7fc18a3b7

Authored by jonathan.brilhante
1 parent 543388de
Exists in master and in 1 other branch coppe

docker-compose

Showing 1 changed file with 13 additions and 0 deletions   Show diff stats
docker-compose.yml 0 → 100644
... ... @@ -0,0 +1,13 @@
  1 +version: '2'
  2 +
  3 +services:
  4 + video:
  5 + build: ./video
  6 + ports:
  7 + - "80:80"
  8 + environment:
  9 + - VLIBRAS_VIDEO_IP=<VIDEO-HOST-IP>
  10 + - VLIBRAS_VIDEO_PORT=80
  11 + volumes:
  12 + - .:/storage/
  13 + restart: always
... ...