Resources attached to the Road To DevOps tutorial
https://blog.noobtoroot.xyz/road-to-devops/
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
318 B
16 lines
318 B
2 years ago
|
version: "3"
|
||
|
services:
|
||
|
wit:
|
||
|
image: xian310/who-is-there:3
|
||
|
networks:
|
||
|
- traefik_traefik_net
|
||
|
deploy:
|
||
|
labels:
|
||
|
traefik.docker.network: "traefik_traefik_net"
|
||
|
traefik.port: "8080"
|
||
|
traefik.frontend.rule: "Host:wit.traefik"
|
||
|
networks:
|
||
|
traefik_traefik_net:
|
||
|
external: true
|
||
|
|