Various cleanup and uWSGI tuning
| | |
| | | __pycache__ |
| | | /.dockerignore |
| | | /.git |
| | | /.github |
| | | /.gitignore |
| | | /.idea |
| | | /config.json |
| | | /package.sh |
| | | /rootfs |
| | | /test |
| | | /test.sh |
| | | /test* |
| | | /venv |
| | |
| | | --gateway 2001:db8:ffff:ffff:ffff:ffff:ffff:ffff \ |
| | | test2 |
| | | |
| | | ROUTES=$(docker run --rm --network test2 \ |
| | | debian \ |
| | | /bin/ip route show |
| | | ) |
| | | echo "${ROUTES}" | grep 192.168.255.254 |
| | | |
| | | ROUTES=$(docker run --rm --network test2 \ |
| | | debian \ |
| | | /bin/ip -6 route show |
| | | ) |
| | | echo "${ROUTES}" | grep 2001:db8:ffff:ffff:ffff:ffff:ffff:ffff |
| | | |
| | | docker network rm test2 |
| | |
| | | ;uid = 65534 |
| | | ;gid = 65534 |
| | | |
| | | die-on-term = 1 |
| | | honour-stdin = 1 |
| | | die-on-term = true |
| | | honour-stdin = true |
| | | |
| | | master = true |
| | | processes = 1 |
| | | threads = 1 |
| | | single-interpreter = true |
| | | |
| | | plugins = python3 |
| | | module = run |