Last active
December 2, 2018 03:31
-
-
Save dallen66/a7ab05ed008f400c9437f65edb5234ae to your computer and use it in GitHub Desktop.
Databases docker-compose.yml
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| version: '3' | |
| services: | |
| postgres: | |
| image: postgres:9.6-alpine | |
| environment: | |
| POSTGRES_USER: postgrator | |
| POSTGRES_DB: postgrator | |
| ports: | |
| - "5432:5432" | |
| mariadb: | |
| image: mariadb:10.3 | |
| environment: | |
| MYSQL_ROOT_PASSWORD: postgrator | |
| MYSQL_DATABASE: postgrator | |
| MYSQL_USER: postgrator | |
| MYSQL_PASSWORD: postgrator | |
| ports: | |
| - "3306:3306" | |
| # SQL Server needs 2.00 GB of RAM | |
| sqlserver: | |
| image: microsoft/mssql-server-linux:latest | |
| environment: | |
| ACCEPT_EULA: Y | |
| SA_PASSWORD: Postgrator123! | |
| MSSQL_PID: Express | |
| ports: | |
| - "1433:1433" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment