-
Notifications
You must be signed in to change notification settings - Fork 9
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
2 changed files
with
23 additions
and
0 deletions.
There are no files selected for viewing
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
# Ambiorix | ||
|
||
See [how to deploy](https://ambiorix.john-coene.com/#/guide/deploy) ambiorix for more details. | ||
|
||
|
||
```bash | ||
docker pull jcoenep/ambiorix | ||
``` | ||
|
||
By default the image will use an internal very basic application and binds it to port `3000`. | ||
|
||
```bash | ||
docker run -p 3000:3000 jcoenep/ambiorix | ||
``` | ||
|
||
To use your own application mount your app in the images `/app` directory, so from the root of the app this would look like this: | ||
|
||
```bash | ||
docker run -v "$(pwd)"/.:/app -p 3000:3000 jcoenep/ambiorix | ||
``` |