This repository has been archived on 2023-11-14. You can view files and clone it, but cannot push or open issues/pull-requests.
2022-07-20 17:32:23 -04:00
|
|
|
version: '3.1'
|
|
|
|
|
|
|
|
|
|
services:
|
|
|
|
|
db:
|
|
|
|
|
image: mariadb
|
|
|
|
|
restart: always
|
2022-08-24 22:02:29 -04:00
|
|
|
command: --max_allowed_packet=200M
|
2022-07-20 17:32:23 -04:00
|
|
|
environment:
|
|
|
|
|
MARIADB_ROOT_PASSWORD: example
|
2022-07-21 23:45:52 -04:00
|
|
|
MARIADB_DATABASE: corner
|
|
|
|
|
MARIADB_USER: corner
|
|
|
|
|
MARIADB_PASSWORD: corner
|
2022-07-21 04:18:39 -04:00
|
|
|
ports:
|
|
|
|
|
- 3306:3306
|
2022-07-21 23:45:52 -04:00
|
|
|
# volumes:
|
|
|
|
|
# - ./docker-volume:/var/lib/mysql
|
2022-07-20 17:32:23 -04:00
|
|
|
|
|
|
|
|
adminer:
|
|
|
|
|
image: adminer
|
|
|
|
|
restart: always
|
|
|
|
|
ports:
|
2022-07-21 23:45:52 -04:00
|
|
|
- 8080:8080
|
2022-08-05 23:24:58 -04:00
|
|
|
|
2022-08-24 22:02:29 -04:00
|
|
|
# coturn:
|
|
|
|
|
# image: coturn/coturn
|
|
|
|
|
# restart: always
|
|
|
|
|
# ports:
|
|
|
|
|
# - 3478:3478
|
|
|
|
|
# - 3478:3478/udp
|
|
|
|
|
# - 5349:5349
|
|
|
|
|
# - 5349:5349/udp
|
|
|
|
|
# - 49160-49200:49160-49200/udp
|
2022-08-05 23:24:58 -04:00
|
|
|
|
|
|
|
|
# docker run -d -p 3478:3478 -p 3478:3478/udp -p 5349:5349 -p 5349:5349/udp -p 49160-49200:49160-49200/udp \
|
|
|
|
|
# coturn/coturn -n --log-file=stdout \
|
|
|
|
|
# --external-ip='$(detect-external-ip)' \
|
|
|
|
|
# --min-port=49160 --max-port=49200
|