Skip to content

Commit

Permalink
update docker configs to resolve conflicts with airplay server
Browse files Browse the repository at this point in the history
  • Loading branch information
v1r3n committed Nov 15, 2024
1 parent 2d19897 commit e5021ae
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ docker compose -f docker/docker-compose.yaml up
#### Create your first workflow

##### To create a workflow, navigate to the UI:
* http://localhost:5000
* http://localhost:8127

##### Or use the REST API with your preferred HTTP client
* http://localhost:8080
Expand Down
2 changes: 1 addition & 1 deletion docker/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -81,5 +81,5 @@ YARN_OPTS='--network-timeout 10000000' docker compose -f docker-compose.yaml up
When building a Docker image using `docker`, you must call it like e.g.

```
docker build --build-arg='YARN_OPTS=--network-timeout 10000000' .. -f server/Dockerfile -t oss-conductor:v3.21.4
docker build --build-arg='YARN_OPTS=--network-timeout 10000000' .. -f server/Dockerfile -t oss-conductor:v3.21.9
```
2 changes: 1 addition & 1 deletion docker/docker-compose-mysql.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ services:
- internal
ports:
- 8080:8080
- 5000:5000
- 8127:5000
healthcheck:
test: [ "CMD", "curl","-I" ,"-XGET", "http://localhost:8080/health" ]
interval: 60s
Expand Down
2 changes: 1 addition & 1 deletion docker/docker-compose-postgres-es7.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ services:
- internal
ports:
- 8080:8080
- 5000:5000
- 8127:5000
healthcheck:
test: [ "CMD", "curl","-I" ,"-XGET", "http://localhost:8080/health" ]
interval: 60s
Expand Down
2 changes: 1 addition & 1 deletion docker/docker-compose-postgres.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ services:
- internal
ports:
- 8080:8080
- 5000:5000
- 8127:5000
healthcheck:
test: [ "CMD", "curl","-I" ,"-XGET", "http://localhost:8080/health" ]
interval: 60s
Expand Down
2 changes: 1 addition & 1 deletion docker/docker-compose.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ services:
- internal
ports:
- 8080:8080
- 5000:5000
- 8127:5000
healthcheck:
test: ["CMD", "curl","-I" ,"-XGET", "http://localhost:8080/health"]
interval: 60s
Expand Down

0 comments on commit e5021ae

Please sign in to comment.