Skip to content

Commit 9cdcb3b

Browse files
committed
chore(compose): rename app service to web for consistency
1 parent c82481f commit 9cdcb3b

File tree

5 files changed

+7
-7
lines changed

5 files changed

+7
-7
lines changed

.devcontainer/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM caltrans/pems:app
1+
FROM caltrans/pems:web
22

33
COPY . .
44

.github/workflows/tests-ui.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,10 +17,10 @@ jobs:
1717
- name: Check out code
1818
uses: actions/checkout@v4
1919

20-
- name: Start app
20+
- name: Start web app
2121
run: |
2222
cp .env.sample .env
23-
docker compose up --detach app
23+
docker compose up --detach web
2424
2525
- name: Run Lighthouse tests for a11y
2626
uses: treosh/[email protected]

bin/build.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
#!/usr/bin/env bash
22
set -eux
33

4-
docker compose build app
4+
docker compose build web
55

66
docker compose build dev
77

compose.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
name: pems
22

33
services:
4-
app:
4+
web:
55
build:
66
context: .
77
dockerfile: appcontainer/Dockerfile
8-
image: caltrans/pems:app
8+
image: caltrans/pems:web
99
env_file: .env
1010
ports:
1111
- "${DJANGO_LOCAL_PORT:-8000}:8000"

docs/development/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -152,7 +152,7 @@ Feel free to inspect the environment file, but leave the defaults for now.
152152
Start the application service with Compose:
153153

154154
```shell
155-
docker compose up -d app
155+
docker compose up -d web
156156
```
157157

158158
The `-d` flag starts the service in "detatched" mode, so your terminal is still available for additional commands. Without this flag, your terminal attaches to the service container's standard output.

0 commit comments

Comments
 (0)