aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/examples/with-prisma/docker-compose.yml
diff options
context:
space:
mode:
Diffstat (limited to 'examples/with-prisma/docker-compose.yml')
-rw-r--r--examples/with-prisma/docker-compose.yml19
1 files changed, 0 insertions, 19 deletions
diff --git a/examples/with-prisma/docker-compose.yml b/examples/with-prisma/docker-compose.yml
deleted file mode 100644
index e02def2..0000000
--- a/examples/with-prisma/docker-compose.yml
+++ /dev/null
@@ -1,19 +0,0 @@
-version: "3"
-
-volumes:
- database:
- driver: local
-
-services:
- mysql:
- platform: linux/amd64
- image: mysql:8.0.32
- container_name: turborepo_mysql
- restart: always
- ports:
- - 3306:3306
- environment:
- MYSQL_DATABASE: turborepo
- MYSQL_ALLOW_EMPTY_PASSWORD: 1
- volumes:
- - database:/var/lib/mysql