Docker berjalan di latar belakang

# Here is an example
# The flag -d makes the container run in the background
docker run -d -p 5000:5000 \
--name container-name \
--restart always \
image-name
Karamolegkos