Skip to content

Commit

Permalink
debug
Browse files Browse the repository at this point in the history
  • Loading branch information
High10Hunter committed Sep 8, 2024
1 parent 6e3c99b commit 984dc98
Showing 1 changed file with 8 additions and 7 deletions.
15 changes: 8 additions & 7 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -67,17 +67,18 @@ jobs:
name: SSH into dev server and deploy
command: |
echo "SSH into dev server"
ssh -o StrictHostKeyChecking=no -v $SSH_USER@$SSH_HOST << 'EOF'
ssh -o StrictHostKeyChecking=no -v $SSH_USER@$SSH_HOST "
su - gdsc -c '
cd map-sorter-api &&
echo "$DOCKER_PASSWORD" | docker login -u "$DOCKER_USERNAME" --password-stdin &&
echo \"$DOCKER_PASSWORD\" | docker login -u \"$DOCKER_USERNAME\" --password-stdin &&
docker pull $DOCKER_IMAGE:$DOCKER_TAG &&
docker container stop map-sorter-api || true &&
docker container rm map-sorter-api || true &&
docker run --log-opt max-size=10m --log-opt max-file=3 --log-opt compress=true --name map-sorter-api -d --env-file .env $DOCKER_IMAGE:$DOCKER_TAG &&
docker run --log-opt max-size=10m --log-opt max-file=3 --log-opt compress=true \
--name map-sorter-api -d --env-file .env $DOCKER_IMAGE:$DOCKER_TAG &&
docker image prune --all -f
'
EOF
"
workflows:
version: 3
Expand All @@ -99,11 +100,11 @@ workflows:
- equal: [deploy, << pipeline.parameters.task >>]
- equal: [dev, << pipeline.parameters.build_stage >>]
jobs:
- build
# - build
- deploy:
context: aws
requires:
- build
# requires:
# - build
filters:
branches:
only: test
Expand Down

0 comments on commit 984dc98

Please sign in to comment.