Add port and label
This commit is contained in:
parent
10dc187839
commit
0a589b6c63
|
@ -27,6 +27,8 @@ services:
|
||||||
nginx_recipes:
|
nginx_recipes:
|
||||||
image: nginx:mainline-alpine
|
image: nginx:mainline-alpine
|
||||||
restart: always
|
restart: always
|
||||||
|
ports:
|
||||||
|
- "9091:80"
|
||||||
env_file:
|
env_file:
|
||||||
- ./.env
|
- ./.env
|
||||||
volumes:
|
volumes:
|
||||||
|
@ -39,6 +41,11 @@ services:
|
||||||
- "traefik.http.routers.recipes.rule=Host(`recipes.velouria.dev`)"
|
- "traefik.http.routers.recipes.rule=Host(`recipes.velouria.dev`)"
|
||||||
- "traefik.http.routers.recipes.entrypoints=websecure"
|
- "traefik.http.routers.recipes.entrypoints=websecure"
|
||||||
- "traefik.http.routers.recipes.tls.certresolver=myresolver"
|
- "traefik.http.routers.recipes.tls.certresolver=myresolver"
|
||||||
|
- "traefik.http.services.recipes.loadbalancer.server.port=80"
|
||||||
|
- "traefik.docker.network=traefik_network"
|
||||||
|
- "homepage.group=Utilities"
|
||||||
|
- "homepage.name=Recipes"
|
||||||
|
- "homepage.description=Bookmark"
|
||||||
depends_on:
|
depends_on:
|
||||||
- web_recipes
|
- web_recipes
|
||||||
networks:
|
networks:
|
||||||
|
|
Loading…
Reference in New Issue