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,6 +4,8 @@ services:
api:
build:
context: .
ports:
- 3000:3000
environment:
NODE_ENV: "production"
HOST: "0.0.0.0"
@ -11,7 +13,3 @@ services:
API_VERSION: 1
ALLOWED_ORIGINS: "http://localhost:3000,https://jusemon.com"
networks:
default:
name: default-network
external: true