mirror of
https://github.com/yummy4friends/y4f.git
synced 2024-11-10 08:57:22 +01:00
4b5f0c2b96
* Add Docker capabilities Changed launchSettings Added Dockerfile && docker-compose with traefik labels * Relocate launchSettings.json * Delete workflows Not needed anymore * Add Docker for WebApi Added docker-compose && Dockerfile * Fix minor mistakes --------- Co-authored-by: ProfessionalUwU <andre.fuhry@hopeless-cloud.xyz>
22 lines
524 B
YAML
22 lines
524 B
YAML
version: "3.4"
|
|
services:
|
|
y4f:
|
|
build: .
|
|
ports:
|
|
- "5248:5248"
|
|
labels:
|
|
- traefik.docker.network=traefik
|
|
- traefik.enable=true
|
|
- traefik.http.routers.y4f.entrypoints=web-secure
|
|
- traefik.http.routers.y4f.rule=Host(`y4f.hopeless-cloud.xyz`)
|
|
- traefik.http.routers.y4f.tls=true
|
|
- traefik.http.routers.y4f.tls.certResolver=default
|
|
networks:
|
|
- default
|
|
- traefik
|
|
restart: unless-stopped
|
|
networks:
|
|
default:
|
|
name: y4f-default
|
|
traefik:
|
|
external: true |