Skip to content

Instantly share code, notes, and snippets.

@lvaneijden
Created December 13, 2021 14:06
Show Gist options
  • Save lvaneijden/0397b2cc2cbac4bf9c6f828a27ae759e to your computer and use it in GitHub Desktop.
Save lvaneijden/0397b2cc2cbac4bf9c6f828a27ae759e to your computer and use it in GitHub Desktop.
Shortened docker-compose.yaml services
version: "3"
services:
fake-s3:
image: minio/minio:RELEASE.2017-04-29T00-40-27Z
ports:
- 9001:9000
command: server /export
memcached:
image: memcached:alpine
ports:
- "11211:11211"
redis:
image: redis:5.0-alpine
ports:
- "6379:6379"
logging:
driver: none
mysql:
image: mysql:5.6
ports:
- "3306:3306"
command: [mysqld, --sql-mode=NO_ENGINE_SUBSTITUTION]
mariadb:
image: mariadb/columnstore:latest
ports:
- "4306:3306"
mongo:
image: mongo:4.2.5
ports:
- "27017:27017"
logging:
driver: none
local-smtp-catcher:
image: mailhog/mailhog:v1.0.0
ports:
- "8025:8025"
logging:
driver: none
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment