15 lines
243 B
YAML
15 lines
243 B
YAML
version: '3.8'
|
|
|
|
services:
|
|
fuego-app:
|
|
build:
|
|
context: .
|
|
dockerfile: Dockerfile
|
|
extra_hosts:
|
|
- "host.docker.internal:host-gateway"
|
|
env_file:
|
|
- .env
|
|
ports:
|
|
- "3000:3000"
|
|
restart: unless-stopped
|