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 23a9ce6 commit 0f083d3
Showing 1 changed file with 15 additions and 15 deletions.
30 changes: 15 additions & 15 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -64,23 +64,23 @@ jobs:
name: SSH into dev server and deploy
command: |
echo "SSH into dev server"
ssh -o BatchMode=yes -o StrictHostKeyChecking=no -v $SSH_USER@$SSH_HOST
ssh -o StrictHostKeyChecking=no -v $SSH_USER@$SSH_HOST "su - gdsc -c '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 image prune --all -f'"
- run:
name: Login to DockerHub
command: |
su - gdsc
echo "$DOCKER_PASSWORD" | docker login -u "$DOCKER_USERNAME" --password-stdin
# - run:
# name: Login to DockerHub
# command: |
# su - gdsc
# echo "$DOCKER_PASSWORD" | docker login -u "$DOCKER_USERNAME" --password-stdin

- run:
name: 'Deploy to << pipeline.parameters.build_stage >> environment'
command: |
echo "Deploying to << pipeline.parameters.build_stage >>"
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 image prune --all -f
# - run:
# name: 'Deploy to << pipeline.parameters.build_stage >> environment'
# command: |
# echo "Deploying to << pipeline.parameters.build_stage >>"
# 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 image prune --all -f

workflows:
version: 3
Expand Down

0 comments on commit 0f083d3

Please sign in to comment.