Last active
May 21, 2022 16:52
-
-
Save saulr7/5afcd95f8ea09215ee1aec069e5d63f4 to your computer and use it in GitHub Desktop.
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.9" | |
| services: | |
| mongodb: | |
| image: "mongo" | |
| container_name: mongodb | |
| restart: always | |
| ports: | |
| - "27018:27017" | |
| volumes: | |
| - mongoData:/data/db | |
| postgresdb: | |
| image: postgres:alpine | |
| container_name: postgresdb | |
| ports: | |
| - "5432:5432" | |
| restart: always | |
| environment: | |
| POSTGRES_PASSWORD: Killzone3 | |
| volumes: | |
| - postgresData:/var/lib/postgresql/data | |
| redisdb: | |
| image: redis:alpine | |
| container_name: redisdb | |
| ports: | |
| - "6379:6379" | |
| volumes: | |
| - redisData:/usr/local/etc/redis | |
| mysqldb: | |
| platform: linux/x86_64 | |
| image: mysql | |
| command: --default-authentication-plugin=mysql_native_password | |
| container_name: mysqldb | |
| ports: | |
| - "3306:3306" | |
| volumes: | |
| - mysqlData:/var/lib/mysql | |
| environment: | |
| MYSQL_ROOT_PASSWORD: Killzone3 | |
| volumes: | |
| mongoData: | |
| postgresData: | |
| redisData: | |
| mysqlData: |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment