GITLAB
Tao
/ docker-compose-stacks
Toggle navigation
Sign in
Sign in
Project
Files
Commits
Network
Graphs
Issues
0
Merge Requests
0
Wiki
Download as
Email Patches
Plain Diff
Browse Code »
Commit
4bb7ce409b6c6eb59d596aa0a0b57a8e5f643566
Authored by
Neenad Ingole
2023-06-23 10:54:32 +0200
1 parent
4e023233
Exists in
master
Add mysql 8 standalone
Showing
1 changed file
with
12 additions
and
0 deletions
Show diff stats
mysql/standalone/docker-compose.yml
Side-by-side Diff
Inline Diff
mysql/standalone/docker-compose.yml
0 → 100644
Wrap text
Diff comments
View file @
4bb7ce4
...
...
@@ -0,0 +1,12 @@
1
+version: "3.9"
2
+
3
+services:
4
+ mysql:
5
+ image: mysql:8
6
+ ports:
7
+ - "3306:3306"
8
+ environment:
9
+ MYSQL_ROOT_PASSWORD: secret
10
+ MYSQL_USER: mysqluser
11
+ MYSQL_PASSWORD: mysqlpw
12
+ MYSQL_DATABASE: inventory
...
...