File size: 459 Bytes
ea038b6 97b7d50 ea038b6 97b7d50 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 | version: '3.8'
services:
your-node-app:
build: .
# Set your custom DNS servers natively
dns:
- 1.1.1.1
- 8.8.8.8
# Apply your system tuning natively
sysctls:
- net.core.rmem_max=134217728
- net.core.wmem_max=134217728
- net.ipv4.tcp_rmem=4096 87380 134217728
- net.ipv4.tcp_wmem=4096 65536 134217728
ports:
- "3001:3001"
environment:
- REPO=https://github.com/Twan07/BEupload.git
|