Created
August 2, 2021 11:16
-
-
Save dereknex/9b512fce52284fab6e4fe4ad9e62572e 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: | |
| postgres: | |
| image: postgres:13 | |
| volumes: | |
| - ./data/postgres:/var/lib/postgresql/data | |
| environment: | |
| POSTGRES_PASSWORD: postgres | |
| ports: | |
| - "5432:5432" | |
| redis: | |
| image: redis:6 | |
| volumes: | |
| - ./data/redis:/data | |
| command: ["redis-server", "--appendonly", "yes"] | |
| ports: | |
| - "6379:6379" | |
| minio: | |
| image: minio/minio:latest | |
| volumes: | |
| - ./data/minio:/data | |
| environment: | |
| MINIO_ROOT_USER: dev_stack | |
| MINIO_ROOT_PASSWORD: dev_stack | |
| command: ["server", "/data", "--console-address", ":9001"] | |
| ports: | |
| - "9000:9000" | |
| - "9001:9001" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment