docker-telegram-bot-api
docker-telegram-bot-api copied to clipboard
Useful env variables?
We can create docker-entrypoint.sh
where place logic of add optional command line arguments via env, for example:
instead of
command: --http-port=80 --max-connections=3000
use env like this:
environment:
HTTP_PORT: 80
MAX_CONNECTIONS: 3000
What do you think about this feature?