Remove network from docker compose

This commit is contained in:
Juan Sebastián Montoya 2024-09-26 20:58:35 -05:00
parent 7386a93d57
commit a3a573ef00

View file

@ -4,14 +4,12 @@ services:
api: api:
build: build:
context: . context: .
ports:
- 3000:3000
environment: environment:
NODE_ENV: "production" NODE_ENV: "production"
HOST: "0.0.0.0" HOST: "0.0.0.0"
PORT: 3000 PORT: 3000
API_VERSION: 1 API_VERSION: 1
ALLOWED_ORIGINS: "http://localhost:3000,https://jusemon.com" ALLOWED_ORIGINS: "http://localhost:3000,https://jusemon.com"
networks:
default:
name: default-network
external: true