Bu araç ne işe yarar?
Image, container name, port, volume ve env bilgileriyle docker run komutu oluşturur. Hızlı container testleri için kullanılır.
Image, port, volume ve env bilgileriyle docker run komutu üret.
Image, container name, port, volume ve env bilgileriyle docker run komutu oluşturur. Hızlı container testleri için kullanılır.
name=my-app
image=nginx:latest
port=8080:80
volume=/host:/container
env=APP_ENV=production
docker run -d \
--name my-app \
-p 8080:80 \
-v /host:/container \
-e APP_ENV=production \
nginx:latest
Production için tek başına docker run yerine compose veya orchestrator yapısı daha sürdürülebilir olabilir.