1
0

docker-compose.yml 268 B

12345678910111213
  1. version: '3.7'
  2. services:
  3. server:
  4. build: .
  5. environment:
  6. TCGUI_IP: 0.0.0.0
  7. TCGUI_PORT: 5000
  8. ports:
  9. - 5000:5000
  10. cap_add:
  11. - NET_ADMIN
  12. ## Uncomment if you want to control the traffic of the host machine:
  13. network_mode: host