Skip to content

Instantly share code, notes, and snippets.

@burntcookie90
Created November 16, 2022 22:01
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save burntcookie90/dd47238961336d6abe45bde027a29ff3 to your computer and use it in GitHub Desktop.
Save burntcookie90/dd47238961336d6abe45bde027a29ff3 to your computer and use it in GitHub Desktop.
Cuckoo.plus docker
version: '3'
services:
app:
build: .
networks:
- proxy
labels:
traefik.enable: true
traefik.http.routers.cuckoo.rule: Host(`example.com`)
traefik.http.routers.cuckoo.entrypoints: websecure
traefik.http.routers.cuckoo.tls.certresolver: letsencrypttls
networks:
proxy:
external: true
FROM nginx:1.23.2-alpine
WORKDIR /usr/share/nginx/html
RUN wget -O app.zip https://github.com/NanaMorse/Cuckoo.Plus/releases/download/release-22.10.0/release-22.10.0.zip && unzip -o app.zip && rm app.zip
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment