docker run -ti -e VIRTUAL_HOST=localhost -p 80:80 -p 443:443 -p 22:22 -v tuleap-data:/data enalean/tuleap-aio
what does ti flag do ?
what does -e flag do ?
Is there any guide book where I could find what these tags means ?
Share and learn in the Docker community.
docker run -ti -e VIRTUAL_HOST=localhost -p 80:80 -p 443:443 -p 22:22 -v tuleap-data:/data enalean/tuleap-aio
what does ti flag do ?
what does -e flag do ?
Is there any guide book where I could find what these tags means ?
-t : Allocate a pseudo-tty
-i : Keep STDIN open even if not attached
-e : Set environment variable
Thanks …that is very much helpful.
Could you please explain this part
what this snippet doing here ? please explain in layman’s words