Skip to content

Commit 0a98111

Browse files
committedDec 28, 2023
Add Docker setup for web service
Introduced a docker-compose configuration to build and run the web service, mapping its internal port 8000 to the same port on the host, facilitating containerization and local development workflow.
1 parent bc344c0 commit 0a98111

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed
 

‎docker-compose.yml

+5
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
services:
2+
web:
3+
build: .
4+
ports:
5+
- "8000:8000"

0 commit comments

Comments
 (0)