Skip to content

Commit

Permalink
feat: add basic mods
Browse files Browse the repository at this point in the history
  • Loading branch information
invm committed Jun 15, 2023
1 parent e9a5c34 commit 8c0ff7c
Show file tree
Hide file tree
Showing 13 changed files with 391 additions and 40 deletions.
26 changes: 26 additions & 0 deletions compose.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
volumes:
psql15:
mysql8:

services:
psql15:
image: postgres:15
environment:
POSTGRES_USER: postgres
POSTGRES_PASSWORD: example
POSTGRES_DB: noir
volumes:
- psql15:/var/lib/postgresql/data
ports:
- 5432:5432
mysql8:
image: mysql:8.0.33
command: --default-authentication-plugin=mysql_native_password
restart: always
environment:
MYSQL_ROOT_PASSWORD: noir
MYSQL_DATABASE: noir
ports:
- 3306:3306
volumes:
- mysql8:/var/lib/mysql
Loading

0 comments on commit 8c0ff7c

Please sign in to comment.