import files

This commit is contained in:
Yann Autissier
2021-02-09 17:05:00 +01:00
parent f5c4576411
commit 44a6d37ba5
425 changed files with 23195 additions and 0 deletions
+1
View File
@@ -0,0 +1 @@
SYSCTL_CONFIG=vm.max_map_count=262144 vm.overcommit_memory=1 fs.file-max=8388608 net.core.somaxconn=1024
+14
View File
@@ -0,0 +1,14 @@
version: '3.6'
services:
sysctl:
command: sh -c 'sysctl -q -w ${SYSCTL_CONFIG} ||:'
image: alpine:latest
networks:
- private
privileged: true
networks:
private:
external: true
name: ${DOCKER_NETWORK_PRIVATE}