Skip to content
Snippets Groups Projects
Commit a234b877 authored by Jose Carlos Luna Duran's avatar Jose Carlos Luna Duran
Browse files

docker compose example for using the binary directly

parent 5225bc57
No related branches found
No related tags found
No related merge requests found
#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
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment