Skip to content

Commit

Permalink
misc: small fix or general refactoring i did not bother commenting
Browse files Browse the repository at this point in the history
  • Loading branch information
evilsocket committed Jan 22, 2024
1 parent 0ed709a commit 5c2a9c7
Showing 1 changed file with 23 additions and 0 deletions.
23 changes: 23 additions & 0 deletions test-servers/issue37.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
version: '3.9'

services:
postgres:
image: postgres
environment:
POSTGRES_USER: user
POSTGRES_PASSWORD: passpass
POSTGRES_DB: db
PGPASSWORD: passpass
ports:
- "5432:5432"

mysql:
image: mysql:8
command: --default-authentication-plugin=mysql_native_password
environment:
MYSQL_ROOT_PASSWORD: passpass
MYSQL_USER: user
MYSQL_PASSWORD: passpass
MYSQL_DATABASE: db
ports:
- "3306:3306"

0 comments on commit 5c2a9c7

Please sign in to comment.