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 f444604 commit 8936f77Copy full SHA for 8936f77
.gitignore
@@ -12,6 +12,5 @@
12
Gemfile.lock
13
docker-compose.yml
14
/test/database.yml
15
-/data/
16
/log/*
17
!/log/.keep
docker-compose.yml.example
@@ -1,5 +1,3 @@
1
-version: "3.8"
2
-
3
services:
4
postgresql:
5
image: postgres:latest
@@ -10,7 +8,7 @@ services:
10
8
ports:
11
9
- "5432:5432"
volumes:
- - ./data/postgres:/var/lib/postgresql/data
+ - postgres_data:/var/lib/postgresql/data
mysql:
image: mariadb
@@ -21,4 +19,8 @@ services:
21
19
22
20
- "3306:3306"
23
24
- - ./data/mysql:/var/lib/mysql
+ - mysql_data:/var/lib/mysql
+
+volumes:
25
+ postgres_data:
26
+ mysql_data:
0 commit comments