Skip to content

Commit

Permalink
update: app-server name
Browse files Browse the repository at this point in the history
  • Loading branch information
codekow authored and JamesKunstle committed Aug 25, 2023
1 parent 853dcbe commit 028be6e
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -187,7 +187,7 @@ NOTE: `podman-compose` has been generally verified to work as well, but our pref

8Knot is a multi-container application.

The web-server, worker-pool, and redis-cache containers communicate with one another via docker network.
The app-server, worker-pool, and redis-cache containers communicate with one another via docker network.

All of the build/tear-down is done with `docker-compose`.

Expand Down
4 changes: 2 additions & 2 deletions docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ services:
ports:
- "8080:8080" # bound to host port, exposed app endpoint

web-server:
app-server:
build:
context: .
dockerfile: ./docker/Dockerfile
Expand Down Expand Up @@ -73,7 +73,7 @@ services:
# - worker-callback
# - worker-query
# - redis-cache
# - web-server
# - app-server
# env_file:
# - ./env.list
# ports:
Expand Down
2 changes: 1 addition & 1 deletion nginx.conf
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ http {
listen 8080;
access_log /dev/null; # disables logging on every request
location / {
proxy_pass http://web-server:8080;
proxy_pass http://app-server:8080;
}
}
}

0 comments on commit 028be6e

Please sign in to comment.