Skip to content

Commit

Permalink
fix: deploy docker-compose
Browse files Browse the repository at this point in the history
  • Loading branch information
xiaohaodu committed Apr 26, 2024
1 parent de5017b commit 7cd57c7
Showing 1 changed file with 16 additions and 0 deletions.
16 changes: 16 additions & 0 deletions docker/prod/docker-compose.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,22 @@ services:
volumes:
- "./nginx:/etc/nginx/conf.d"
- "./web-chat-x-vue:/etc/nginx/html"
coturn:
image: coturn/coturn:4.6.2
container_name: coturn-server
command: ["--min-port=49160", "--max-port=49200"]
ports:
- "3478:3478"
- "3478:3478/udp"
- "5349:5349"
- "5349:5349/udp"
- "49160-49200:49160-49200/udp"
volumes:
- ./turnserver.conf:/etc/turnserver.conf
restart: always
networks:
- docker
- web-chat-x
networks:
web-chat-x:
name: web-chat-x
Expand Down

0 comments on commit 7cd57c7

Please sign in to comment.