Skip to content

Commit

Permalink
[⚡️] - Updating api domain to localhost
Browse files Browse the repository at this point in the history
Signed-off-by: Binyamin Yawitz <[email protected]>
  • Loading branch information
byawitz committed Mar 11, 2024
1 parent ee145bf commit f62847e
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion docker-compose.ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ services:
depends_on:
- linkos
ports:
- "80:80"
- "8080:80"
volumes:
- /var/run/docker.sock:/var/run/docker.sock
networks:
Expand Down
2 changes: 1 addition & 1 deletion e2e/tests/api.spec.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import {expect, test, describe, beforeAll} from "bun:test";

const apiEndpoint = 'http://traefik:8080/v1/api'
const apiEndpoint = 'http://localhost:8080/v1/api'

interface response {
success: boolean,
Expand Down
2 changes: 1 addition & 1 deletion e2e/tests/links.spec.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import {expect, test, describe, beforeAll} from "bun:test";

const endpoint = 'http://traefik:8080/'
const endpoint = 'http://localhost:8080/'

interface response {
success: boolean,
Expand Down

0 comments on commit f62847e

Please sign in to comment.