Our RestAPI backend, built with sinatra
1.4K
First install docker for your local workstation: Get Docker
# Bring up API server
docker-compose up -d
# Validate services started
docker ps
# Check apiserver logs
docker-compose logs api
# Stop all running containers (can be restarted in same state later using the above command)
docker-compose stop
# Destroy all containers, including underlying volumes
docker-compose down -v
# Get shell access (bash) to the web container
docker-compose exec api bash
Content type
Image
Digest
Size
291.4 MB
Last updated
over 9 years ago
docker pull securable/restapi