Skip to content

Commit

Permalink
feat: 빌드한 이미지 이름에 docker hub 유저 이름 추가
Browse files Browse the repository at this point in the history
  • Loading branch information
ezcolin2 committed Jan 15, 2025
1 parent bff4d5d commit 82acb44
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
6 changes: 3 additions & 3 deletions compose.prod.override.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,16 +5,16 @@ services:
build:
context: .
dockerfile: ./services/nginx/Dockerfile.prod
image: octodocs-nginx
image: summersummerwhy/octodocs-nginx

backend:
build:
context: .
dockerfile: ./services/backend/Dockerfile.prod
image: octodocs-backend:latest
image: summersummerwhy/octodocs-backend

websocket:
build:
context: .
dockerfile: ./services/websocket/Dockerfile.prod
image: octodocs-websocket:latest
image: summersummerwhy/octodocs-websocket
6 changes: 3 additions & 3 deletions compose.prod.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ version: "3.8"

services:
nginx:
image: octodocs-nginx
image: summersummerwhy/octodocs-nginx:latest
restart: always
ports:
- "80:80"
Expand All @@ -19,7 +19,7 @@ services:
condition: service_healthy

backend:
image: octodocs-backend:latest
image: summersummerwhy/octodocs-backend:latest
expose:
- "3000"
networks:
Expand All @@ -45,7 +45,7 @@ services:
restart: always

websocket:
image: octodocs-websocket:latest
image: summersummerwhy/octodocs-websocket:latest
expose:
- "4242"
networks:
Expand Down

0 comments on commit 82acb44

Please sign in to comment.