서버/Home Server 구축
2025. 3. 28.
03. docker-compose.yml 및 traefik 설정 검토
compose.yml tinyauth: image: ghcr.io/steveiliop56/tinyauth:latest container_name: tinyauth hostname: tinyauth networks: - traefik-network .... environment: - ... labels: - "traefik.enable=true" - "traefik.http.services.tinyauth.loadBalancer.server.port=3000"도커로 배포하고 싶은 컨테이너를 설정 하기 위해서는 label 설정이 필요합니다. "traefik.enable=true" 이 옵션은 traefik이 컨테이너가 활성화 되면 인..