Commit
·
053e7e7
1
Parent(s):
8a3e157
inital test to docker config
Browse files- docker-compose.yml +11 -0
- requirements.txt +0 -0
docker-compose.yml
ADDED
@@ -0,0 +1,11 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
version: '3.8'
|
2 |
+
|
3 |
+
services:
|
4 |
+
app:
|
5 |
+
build:
|
6 |
+
context: .
|
7 |
+
dockerfile: Dockerfile
|
8 |
+
ports:
|
9 |
+
- "80:8000"
|
10 |
+
volumes:
|
11 |
+
- .:/app
|
requirements.txt
ADDED
Binary file (4.39 kB). View file
|
|