Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
G
Go Canary Collector
Manage
Activity
Members
Code
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Locked files
Deploy
Releases
Package Registry
Container Registry
Model registry
Operate
Terraform modules
Analyze
Contributor analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
ComputerSecurity
Go Canary Collector
Commits
a234b877
Commit
a234b877
authored
10 months ago
by
Jose Carlos Luna Duran
Browse files
Options
Downloads
Patches
Plain Diff
docker compose example for using the binary directly
parent
5225bc57
No related branches found
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
docker-compose-inline.yml
+34
-0
34 additions, 0 deletions
docker-compose-inline.yml
with
34 additions
and
0 deletions
docker-compose-inline.yml
0 → 100644
+
34
−
0
View file @
a234b877
#Requires docker compose v2 (https://docs.docker.com/compose/install/linux/)
#Logging to journald to avoid losing the logs, can check with journalctl CONTAINER_NAME=gocanary
services
:
gocanary
:
build
:
context
:
.
dockerfile_inline
:
|
FROM scratch
WORKDIR /canary
COPY gocanary /canary
EXPOSE 443
EXPOSE 80
EXPOSE 53/tcp
EXPOSE 53/udp
ENTRYPOINT ["./gocanary", "--enable-hardening=false", "--enable-https=true", "--autocert-domain=REPLACE_DOMAIN"]
#Or for cert.key and cert.pem
#ENTRYPOINT ["./gocanary", "--enable-hardening=false", "--enable-https=true"]
ports
:
-
"
REPLACE_PUBLIC_IP:53:53/udp"
-
"
REPLACE_PUBLIC_IP:53:53/tcp"
-
"
REPLACE_PUBLIC_IP:443:443"
-
"
REPLACE_PUBLIC_IP:80:80"
volumes
:
-
./canary.yaml:/canary/canary.yaml
-
./config.yaml:/canary/config.yaml
#For let's encrypt certificates
-
./cache:/canary/cache
#Or use generated certs
#- ./cert.key:/canary/cert.key
#- ./cert.pem:/canary/cert.pem
container_name
:
gocanary
restart
:
always
logging
:
driver
:
"
journald"
\ No newline at end of file
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment