diff --git a/basic/basic.yaml b/basic/basic.yaml new file mode 100644 index 0000000..ef17795 --- /dev/null +++ b/basic/basic.yaml @@ -0,0 +1,13 @@ +version: '3' +services: + web: + image: nginx + db: + image: mysql + ports: + - "3310:3306" + environment: + - MYSQL_ROOT_PASSWORD=password + - MYSQL_USER=user + - MYSQL_PASSWORD=password + - MYSQL_DATABASE=demodb