Closed
Description
I do have up and running docker-compose file. When i convert it this command line in docker-compose.yml
command: gunicorn myapp.wsgi:application --workers 1 --bind 0.0.0.0:800
convert as args inside of generated deployment file
- args: - gunicorn - myapp.wsgi:application - --workers - "1" - --bind - 0.0.0.0:8000
if i am not wrong, output should be
command: ["gunicorn myapp.wsgi:application --workers 1 --bind 0.0.0.0:800"]