🎉」 init: hello world !

This commit is contained in:
2025-05-28 12:10:02 +02:00
commit 9bff691192
161 changed files with 230316 additions and 0 deletions

25
docker-compose.yml Normal file
View File

@ -0,0 +1,25 @@
services:
webserver:
container_name: random-shit
build:
context: .
dockerfile: docker/dockerfile
networks:
- traefik-back
# ports:
# - 80:80
restart: unless-stopped
labels:
- traefik.enable=true
- traefik.docker.network=traefik-back
- traefik.http.routers.random-shit.rule=host(`random-shit.kanel.ovh`)
- traefik.http.routers.random-shit.entrypoints=websecure
- traefik.http.routers.random-shit.tls.certresolver=letsencrypt
- traefik.http.routers.random-shit.tls=true
- traefik.http.services.random-shit.loadbalancer.server.port=80
- traefik.http.routers.random-shit.service=random-shit
networks:
traefik-back:
external: true