This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!DOCTYPE html> | |
<html lang="en"> | |
<head> | |
<meta charset="UTF-8"> | |
<title>Drag Drop Demo</title> | |
<script src="https://cdnjs.cloudflare.com/ajax/libs/interact.js/1.2.8/interact.min.js"></script> | |
<style> | |
#drag-1, #drag-2 { | |
width: 25%; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Example Makefile for docker builds | |
# See http://blog.dixo.net/2015/07/building-docker-containers-with-make-on-coreos/ | |
#----------------------------------------------------------------------------- | |
# configuration - see also 'make help' for list of targets | |
#----------------------------------------------------------------------------- | |
# name of container | |
CONTAINER_NAME = myregistry.example.com:5000/mycontainer:latest |