README.docker 508 B

12345678910111213141516171819
  1. Before you begin
  2. * copy db schema run ./cp_schema.sh
  3. * edit turnserver/turnserver.cfg according your db selection (mysql or postgresql or redis or mongodb)
  4. # start
  5. docker-compose -f docker-compose-all.yml up --build --detach
  6. # restart
  7. Notice: May restart needed for coturn container, if it could not access database yet, due initialization delay.
  8. docker restart docker_coturn_1
  9. # stop
  10. docker-compose -f docker-compose-all.yml down
  11. # Or Stop with volume removal
  12. docker-compose down --volumes