chore: add pipeline
dev / deploy (push) Successful in 2m18s

This commit is contained in:
Daniil
2026-04-30 00:29:12 +03:00
parent 20928e9a60
commit 64b0d277af
6 changed files with 131 additions and 2 deletions
+28
View File
@@ -0,0 +1,28 @@
services:
frontend:
image: cofee-frontend:dev
container_name: cofee_frontend
build:
context: .
dockerfile: Dockerfile
env_file:
- .env
restart: unless-stopped
environment:
NODE_ENV: production
NEXT_TELEMETRY_DISABLED: "1"
PORT: 3000
HOSTNAME: 0.0.0.0
networks:
- proxy
labels:
- "traefik.enable=true"
- "traefik.docker.network=proxy"
- "traefik.http.routers.cofee_frontend.rule=Host(`app.trimgu.ru`)"
- "traefik.http.routers.cofee_frontend.entrypoints=websecure"
- "traefik.http.routers.cofee_frontend.service=cofee_frontend"
- "traefik.http.services.cofee_frontend.loadbalancer.server.port=3000"
networks:
proxy:
external: true