Skip to content

Commit 7f4268a

Browse files
chore: use ghcr.io for all images in docker-compose.yml and update mongo image to 7.0.17
closes #207
1 parent 7534117 commit 7f4268a

File tree

1 file changed

+23
-23
lines changed

1 file changed

+23
-23
lines changed

docker-compose.yml

Lines changed: 23 additions & 23 deletions
Original file line numberDiff line numberDiff line change
@@ -1,23 +1,23 @@
1-
services:
2-
nginx:
3-
restart: unless-stopped
4-
build:
5-
target: nginx-prod
6-
context: ./web
7-
image: boilerplate.azurecr.io/nginx:latest
8-
ports:
9-
- "80:8080"
10-
links:
11-
- api
12-
13-
api:
14-
build: ./api
15-
image: ghcr.io/equinor/template-fastapi-react/api
16-
restart: unless-stopped
17-
depends_on:
18-
- db
19-
20-
db:
21-
image: mongo:5.0.9
22-
restart: unless-stopped
23-
command: mongod --auth --quiet
1+
services:
2+
nginx:
3+
image: ghcr.io/equinor/template-fastapi-react/nginx:latest
4+
restart: unless-stopped
5+
build:
6+
target: nginx-prod
7+
context: ./web
8+
ports:
9+
- "80:8080"
10+
links:
11+
- api
12+
13+
api:
14+
image: ghcr.io/equinor/template-fastapi-react/api
15+
build: ./api
16+
restart: unless-stopped
17+
depends_on:
18+
- db
19+
20+
db:
21+
image: mongo:7.0.17
22+
restart: unless-stopped
23+
command: mongod --auth --quiet

0 commit comments

Comments
 (0)