Last active
February 11, 2016 00:38
-
-
Save stevenpollack/2694a602beadee7f6a77 to your computer and use it in GitHub Desktop.
rethinkdb Appfile for Otto
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
590a1469-c01c-5d41-122f-3ca4e58180d2 | |
DO NOT MODIFY OR DELETE THIS FILE! | |
This file should be checked in to version control. Do not ignore this file. | |
The first line is a unique UUID that represents the Appfile in this directory. | |
This UUID is used globally across your projects to identify this specific | |
Appfile. This UUID allows you to modify the name of an application, or have | |
duplicate application names without conflicting. | |
If you delete this file, then deploys may duplicate this application since | |
Otto will be unable to tell that the application is deployed. |
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
application { | |
name = "rethinkdb" | |
type = "docker-external" | |
} | |
customization { | |
image = "rethinkdb" | |
run_args = "--name some-rethink -v $PWD:/data -p 8080:8080 -p 28015:28015 -d rethinkdb" | |
/* start up a jupyter-notebook interface | |
image = "jupyter/notebook" | |
run_args = "--rm -it -p 8888:8888 -v $PWD:/notebooks" | |
*/ | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment