Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions deploy.sh
Original file line number Diff line number Diff line change
Expand Up @@ -18,10 +18,10 @@ export ANTHROPIC_API_KEY=${ANTHROPIC_API_KEY}
export OPENAI_API_KEY=${OPENAI_API_KEY}

echo "🐳 Pulling latest docker image..."
docker-compose pull
docker compose pull

echo "🚀 Starting application with docker-compose..."
docker-compose up -d
docker compose up -d

echo "🧹 Pruning old docker images..."
docker image prune -af
Expand Down
2 changes: 0 additions & 2 deletions docker-compose.local.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,3 @@
version: '3.8'

services:
# MySQL (개발용)
mysql:
Expand Down
2 changes: 0 additions & 2 deletions docker-compose.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,3 @@
version: '3.8'

services:
app:
image: ${DOCKER_IMAGE}:${BRANCH}
Expand Down
Loading