ken_nogi/NodeSrv/apps/authgw-poc/docker-compose.yml
Kenichiro NOGI ce58cb4be4 初回コミット: dev配下(NodeSrv/Pleasanter等)をGitea管理下に統合
GitHub(nextgroup2706/ken_nogi)は今後使わず自社Gitea運用に切替え。
NodeSrvは旧リポジトリの履歴を破棄しファイルのみ統合(Dokploy用サービスアカウントは
別途mygit-admin/NodeSrv.gitに履歴あり)。notepmエクスポート(12GB)とPleasanter
インストーラzip(208MB)はサイズが大きいため.gitignoreで除外。

Co-Authored-By: Claude Sonnet 5 <noreply@anthropic.com>
2026-09-04 15:37:06 +09:00

28 lines
1.1 KiB
YAML

services:
authgw-poc:
build: .
expose:
- 3000
env_file:
- .env
networks:
- dokploy-network
labels:
- traefik.enable=true
- traefik.http.routers.authgw-poc-web.rule=Host(`poc-demo.apps.next-hd.net`)
- traefik.http.routers.authgw-poc-web.entrypoints=web
- traefik.http.routers.authgw-poc-web.middlewares=redirect-to-https
- traefik.http.middlewares.redirect-to-https.redirectscheme.scheme=https
- traefik.http.routers.authgw-poc-web.service=authgw-poc-svc
- traefik.http.routers.authgw-poc-websecure.rule=Host(`poc-demo.apps.next-hd.net`)
- traefik.http.routers.authgw-poc-websecure.entrypoints=websecure
- traefik.http.routers.authgw-poc-websecure.tls.certresolver=letsencrypt
- traefik.http.routers.authgw-poc-websecure.middlewares=oauth-errors@file,oauth-auth@file
- traefik.http.routers.authgw-poc-websecure.service=authgw-poc-svc
- traefik.http.services.authgw-poc-svc.loadbalancer.server.port=3000
restart: unless-stopped
networks:
dokploy-network:
external: true