top-tran/backend/podman-compose.yml
2026-04-27 17:26:53 -03:00

14 lines
No EOL
244 B
YAML

version: "3.9"
services:
backend:
container_name: top-tran-backend
image: top-tran-backend
build:
context: .
dockerfile: Dockerfile
ports:
- "3000:3000"
environment:
- PORT=3000
restart: always