From 3b18cca2d2e6cca82b163addb58efa4bbd65e825 Mon Sep 17 00:00:00 2001 From: mpolawar <37649735+mpolawar@users.noreply.github.com> Date: Mon, 28 Feb 2022 13:48:16 +0100 Subject: [PATCH] Create basic yaml file which does not need any support files --- basic/basic.yaml | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 basic/basic.yaml 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