first commit
Some checks failed
Build and Deploy / build-and-push (push) Failing after 4m14s

This commit is contained in:
Cauê Faleiros
2026-04-09 09:45:02 -03:00
commit c687fd2bd1
12 changed files with 305 additions and 0 deletions

22
docker-compose.yml Normal file
View File

@@ -0,0 +1,22 @@
version: '3.8'
services:
middleware:
# If using CI/CD, you will replace 'build: .' with your Gitea registry image:
# image: gitea.yourdomain.com/youruser/api-tiny-n8n:latest
build: .
container_name: api-tiny-n8n
restart: unless-stopped
ports:
# Maps port 3030 on your host to 3000 inside the container.
# Nginx Proxy Manager will point to YOUR_SERVER_IP:3030
- "3030:3000"
env_file:
- .env
# Optional: If you use a shared Docker network for Nginx Proxy Manager, you can attach it here:
# networks:
# - nginx-proxy-manager-network
# networks:
# nginx-proxy-manager-network:
# external: true