-
Notifications
You must be signed in to change notification settings - Fork 11
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #8 from ellwoodb/master
Add Docker install instructions
- Loading branch information
Showing
3 changed files
with
69 additions
and
8 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 |
---|---|---|
@@ -1,4 +1,5 @@ | ||
bifrost: | ||
# Override the default path to the one used in the docker image | ||
cert_file: "certs/cert.pem" | ||
|
||
bridge: | ||
|
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 |
---|---|---|
@@ -1,7 +1,10 @@ | ||
services: | ||
bifrost: | ||
build: . | ||
volumes: | ||
- /path/to/app-data/config.yaml:/app/config.yaml | ||
- /path/to/app-data/certs:/app/certs | ||
container_name: bifrost | ||
restart: unless-stopped | ||
network_mode: host | ||
volumes: | ||
# If you followed the guide on our readme, these paths work out of the box | ||
- ./config.yaml:/app/config.yaml | ||
- ./certs:/app/certs |