Skip to content

Commit

Permalink
Merge pull request #13 from henrikth93/henrikth93-docker-tooling-#7
Browse files Browse the repository at this point in the history
Create docker-compose.yaml
  • Loading branch information
wkyoshida committed Jun 23, 2024
2 parents d4c58b6 + 297f024 commit 3e336ef
Showing 1 changed file with 16 additions and 0 deletions.
16 changes: 16 additions & 0 deletions docker-compose.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
version: "3.8"
services:

db:
volumes:
- testvolume:/var/lib/mysql
image: mariadb
environment:
MARIADB_ROOT_PASSWORD: password123
MARIADB_USER: scribe
MARIADB_PASSWORD: password123
MARIADB_DATABASE: scribe-server-database
ports:
- 3307:3306
volumes:
testvolume:

0 comments on commit 3e336ef

Please sign in to comment.