-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
docs: Adds build steps to the README.md
- Loading branch information
1 parent
b9b0780
commit 73c6ca2
Showing
1 changed file
with
38 additions
and
7 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,13 +1,44 @@ | ||
# Contpose | ||
|
||
I am not very good at naming things. This is the convination of Continuous and | ||
Compose. | ||
# Compose Watcher | ||
|
||
This tool manages Docker Compose instances by constantly looking for new | ||
versions of images to deploying seemlessly. | ||
|
||
Contpose works as a daemon that runs in the background of the host server. | ||
Compose Watcher works as a daemon that runs in the background of the host server. | ||
|
||
## Build | ||
|
||
### RPM (RHEL) | ||
|
||
To build rpm make sure you have the following installed: | ||
|
||
- `cargo`: Rust package manager and build tool | ||
- `rustc`: Rust compiler | ||
- `make`: Run make files | ||
- `rpmbuild`: Tool to build RPMs | ||
|
||
Once these dependencies are installed run: | ||
|
||
``` | ||
make build-rpm | ||
``` | ||
|
||
|
||
This should create a file called roughly `../compose-watcher-$VERSION.x86_64.rpm`. | ||
|
||
### Deb (Debian & Ubuntu) | ||
|
||
To build deb make sure you have the following installed: | ||
|
||
- `cargo`: Rust package manager and build tool | ||
- `rustc`: Rust compiler | ||
- `make`: Run make files | ||
- `dpkg-dev`: Tool to build DEB files | ||
|
||
Once these dependencies are installed run: | ||
|
||
``` | ||
make build-deb | ||
``` | ||
|
||
## Installing | ||
This should create a file called roughly `./compose-watcher.deb`. | ||
|
||
TODO |