clean: docker build will be remove in future releases / build into compose file

This commit is contained in:
AdsonCicilioti 2023-08-26 02:36:45 -03:00
parent bbc2b8a396
commit c9721d7bc9
3 changed files with 2 additions and 6 deletions

View File

@ -4,6 +4,7 @@ services:
api:
container_name: evolution_api
image: evolution/api:local
build: .
restart: always
ports:
- 8080:8080

View File

@ -4,6 +4,7 @@ services:
api:
container_name: evolution_api
image: evolution/api:local
build: .
restart: always
ports:
- 8080:8080

View File

@ -1,6 +0,0 @@
#!/bin/bash
IMAGE='evolution/api:local'
docker build -t ${IMAGE} .
docker compose up -d