-
-
Notifications
You must be signed in to change notification settings - Fork 671
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix: update the docker compose file to compose.dev.yaml and compose.yaml
- Loading branch information
1 parent
d94982a
commit a7f57fe
Showing
2 changed files
with
17 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
version: '3.9' | ||
|
||
services: | ||
devops-website: | ||
volumes: | ||
- ./:/usr/share/nginx/html:ro | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
version: '3.9' | ||
|
||
services: | ||
devops-website: | ||
container_name: devops-website | ||
build: | ||
context: . | ||
dockerfile: Dockerfile | ||
ports: | ||
- 8000:80 |