From 177028aafcd4e1f997cfd771a83b88fcba2e47d1 Mon Sep 17 00:00:00 2001 From: Danny Avila <110412045+danny-avila@users.noreply.github.com> Date: Mon, 8 May 2023 18:57:30 -0400 Subject: [PATCH] chore: update docker image version to 0.4.0 (#218) * chore(docker-compose.yml): update docker-compose file to use local node-api image build instead of docker hub image build * chore(docker-compose.yml): update docker image version to 0.4.0 --- docker-compose.yml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/docker-compose.yml b/docker-compose.yml index fce7aa759..8d4add3c3 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -19,11 +19,11 @@ services: - 3080:3080 # Change it to 9000:3080 to use nginx depends_on: - mongodb - # image: node-api # Uncomment this to build from local file - # build: - # context: . - # target: node-api - image: chatgptclone/app:0.3.3 # Comment this & uncomment above to build from local file + image: node-api # Comment this & uncomment below to build from docker hub image + build: + context: . + target: node-api + # image: chatgptclone/app:0.4.0 # Uncomment this & comment above to build from docker hub image restart: always env_file: - ./api/.env