Created
November 16, 2022 22:01
-
-
Save burntcookie90/dd47238961336d6abe45bde027a29ff3 to your computer and use it in GitHub Desktop.
Cuckoo.plus docker
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
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 |
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
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