Skip to content

Commit

Permalink
mariadb docker doesn't escape symbols
Browse files Browse the repository at this point in the history
  • Loading branch information
rkm committed Dec 12, 2020
1 parent 93870de commit f2c8517
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion azure-pipelines.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ variables:
MAVEN_OPTS: "-Dmaven.repo.local=$(MAVEN_CACHE_FOLDER)"
RDMP_CLI_DIR: $(Pipeline.Workspace)/rdmp-cli
TESS_DATA_DIR: $(Pipeline.Workspace)/tessdata
DB_PASSWORD: "YourStrong!Passw0rd"
DB_PASSWORD: "YourStrongPassw0rd"

jobs:
- job: run_dotnet_tests
Expand Down
4 changes: 2 additions & 2 deletions meta/docker-compose-dotnet.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,14 +20,14 @@ services:
image: mcr.microsoft.com/mssql/server:2017-latest
environment:
- ACCEPT_EULA=Y
- SA_PASSWORD=${DB_PASSWORD:-'YourStrong!Passw0rd'}
- SA_PASSWORD=${DB_PASSWORD:-'YourStrongPassw0rd'}
ports:
- 1433:1433
mariadb:
container_name: mariadb
image: mariadb:10.4
environment:
- MYSQL_ROOT_PASSWORD=${DB_PASSWORD:-'YourStrong!Passw0rd'}
- MYSQL_ROOT_PASSWORD=${DB_PASSWORD:-'YourStrongPassw0rd'}
ports:
- 3306:3306
redis:
Expand Down
4 changes: 2 additions & 2 deletions tests/common/Smi.Common.Tests/RelationalDatabases.yaml
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
MySql: 'server=127.0.0.1;Uid=root;Pwd=;sslmode=None'
SqlServer: 'Server=localhost;User Id=sa;Password=YourStrong!Passw0rd;'
MySql: 'server=127.0.0.1;Uid=root;Pwd=YourStrongPassw0rd;sslmode=None'
SqlServer: 'Server=localhost;User Id=sa;Password=YourStrongPassw0rd;'

0 comments on commit f2c8517

Please sign in to comment.