-
-
Notifications
You must be signed in to change notification settings - Fork 80
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fixing log level and wildcard features (#72)
* Fixing log level that stopped of work after **2.5.0** * Fixing and increasing docs development instructions * Fixing wildcard resolution were not solving main domain to docker container, just the subdomains
- Loading branch information
Showing
22 changed files
with
269 additions
and
137 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
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 +1 @@ | ||
2.5.1 | ||
2.5.2 |
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
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
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 was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
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,3 @@ | ||
* [Building from source with docker](Compiling-the-project-from-source.md) | ||
* [Developing with docker](Developing-at-the-project.md) | ||
* [Generate Version](README.md) | ||
* [Features](features.md) | ||
* [API Documentation](api) | ||
* [Developing](developing) |
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,39 @@ | ||
### Building from source with docker | ||
|
||
**DPS** uses docker to simplify the compile process | ||
|
||
|
||
Generate the binaries | ||
|
||
```bash | ||
$ docker-compose up prod-build-binary-dps | ||
Starting docker-dns-server-compiler | ||
Attaching to docker-dns-server-compiler | ||
docker-dns-server-compiler | ok github.com/mageddo/dns-proxy-server/conf 0.008s | ||
docker-dns-server-compiler | ? github.com/mageddo/dns-proxy-server/controller [no test files] | ||
... | ||
docker-dns-server-compiler | github.com/mageddo/dns-proxy-server/flags | ||
... | ||
docker-dns-server-compiler | _/app/src | ||
docker-dns-server-compiler exited with code 0 | ||
``` | ||
|
||
Then binaries mus be available at **build** folder | ||
|
||
``` | ||
$ ls build/ | ||
dns-proxy-server dns-proxy-server-2.5.1.tgz static | ||
``` | ||
|
||
If you want you can build the docker image | ||
|
||
``` | ||
$ docker-compose build prod-build-image-dps && docker-compose up prod-dps | ||
``` | ||
|
||
### Used tecnologies | ||
|
||
* Docker | ||
* Docker Compose | ||
* Git | ||
* Golang 1.9 |
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
File renamed without changes.
Oops, something went wrong.