We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f413930 commit eacde7eCopy full SHA for eacde7e
docker-compose/docker-compose.yaml
@@ -0,0 +1,19 @@
1
+version: '2'
2
+services:
3
+
4
+ crud-mysql:
5
+ container_name: crud-mysql
6
+ image: muhammadhanif/phonebook:mysql
7
+ ports:
8
+ - "3306:3306"
9
10
+ crud-flask:
11
+ container_name: crud-flask
12
+ image: muhammadhanif/phonebook:flask
13
14
+ - "8181:8181"
15
+ working_dir: /hnf/source_code
16
+ command: python server.py
17
+ links:
18
+ - crud-mysql
19
0 commit comments