Skip to content

Commit

Permalink
docker update
Browse files Browse the repository at this point in the history
  • Loading branch information
kayprogrammer committed Aug 28, 2024
1 parent 6e3fe6b commit 36ce7f5
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 5 deletions.
3 changes: 1 addition & 2 deletions .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,6 @@ jobs:
sshpass -p "${{ secrets.SSH_PASSPHRASE }}" ssh -o StrictHostKeyChecking=no docker@${VPS_IP} << 'EOF'
cd /waitlist
docker-compose down
docker build -t waitlist-app .
docker run -p 5001:5001 waitlist-app
docker-compose up --build -d --remove-orphans
echo "Docker Compose executed"
EOF
6 changes: 3 additions & 3 deletions docker-compose.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
services:
vite:
build:
context: .
target: build
build: .
ports:
- "5001:5001"
env_file:
- .env

0 comments on commit 36ce7f5

Please sign in to comment.