Skip to content

Commit

Permalink
done
Browse files Browse the repository at this point in the history
  • Loading branch information
a.nasibullin committed Apr 17, 2024
1 parent 6cf341b commit 6213329
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 4 deletions.
3 changes: 2 additions & 1 deletion .github/workflows/push_docker_hub.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ on:
push:
branches:
- app
- old_front

jobs:
build-and-push:
Expand All @@ -21,4 +22,4 @@ jobs:
- name: Build and Push Docker Compose
run: |
docker-compose -f docker-compose.yaml build --no-cache
docker-compose -f docker-compose.yaml push
docker-compose -f docker-compose.yaml push
4 changes: 2 additions & 2 deletions docker-compose.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ services:
build:
context: .
dockerfile: ./docker/api/Dockerfile
image: lmcyber/stud_camp_backend:0.2
image: lmcyber/stud_camp_backend:0.3

ports:
- 8080:8080
Expand All @@ -16,7 +16,7 @@ services:
build:
context: .
dockerfile: ./docker/nginx/Dockerfile
image: lmcyber/stud_camp_nginx:0.2
image: lmcyber/stud_camp_nginx:0.3

ports:
- 80:80
Expand Down
2 changes: 1 addition & 1 deletion frontend/src/API/Fetch.js
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ var headers = {

export default async function Fetch({ action, method, body }) {

var url = `http://92.255.77.65/${action}` // for server
var url = `http://80.68.156.51/${action}` // for server
// var url = `http://0.0.0.0:8080/${action}` // for local
var data

Expand Down

0 comments on commit 6213329

Please sign in to comment.