Last active
February 4, 2021 18:02
-
-
Save lebowvsky/8ca3fe23ff8335c5363c41ae0d4a02b8 to your computer and use it in GitHub Desktop.
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: "2" | |
services: | |
app: | |
image: lebowvsky/cvonline | |
stdin_open: true # docker run -i | |
tty: true # docker run -t | |
networks: | |
- ubuntu_web | |
labels: | |
- "traefik.enable=true" | |
- "traefik.http.routers.my-cv.rule=Host(`my-cv.bricelegallo.dev`)" | |
- "traefik.http.services.my-cv.loadbalancer.server.port=3000" | |
- "traefik.http.routers.my-cv.entrypoints=websecure" | |
- "traefik.http.routers.my-cv.tls.certresolver=leresolver" | |
networks: | |
ubuntu_web: | |
external: | |
name: ubuntu_web |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment