File tree Expand file tree Collapse file tree 3 files changed +7
-4
lines changed Expand file tree Collapse file tree 3 files changed +7
-4
lines changed Original file line number Diff line number Diff line change @@ -29,4 +29,5 @@ coverage
2929
3030* .tsbuildinfo
3131
32- .env
32+ .env
33+ .env.production
Original file line number Diff line number Diff line change @@ -10,20 +10,20 @@ pipeline {
1010 stage(' Stop Existing Container' ) {
1111 steps {
1212 script {
13- sh ' docker- compose down || true'
13+ sh ' docker compose down || true'
1414 }
1515 }
1616 }
1717 stage(' Build and Deploy with Docker Compose' ) {
1818 steps {
19- sh ' docker- compose up --build -d'
19+ sh ' docker compose up --build -d'
2020 }
2121 }
2222 }
2323 post {
2424 always {
2525 script {
26- sh ' docker- compose logs'
26+ sh ' docker compose logs'
2727 }
2828 }
2929 }
Original file line number Diff line number Diff line change @@ -2,6 +2,8 @@ version: '3.8'
22
33services :
44 quizzfly-client :
5+ image : quizzfly-client
6+ container_name : quizzfly-client
57 build :
68 context : .
79 dockerfile : Dockerfile
You can’t perform that action at this time.
0 commit comments