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