Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

manage middlewares with docker compose #298

Merged
merged 1 commit into from
Mar 20, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
36 changes: 36 additions & 0 deletions config/.bin/compose.mw.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,36 @@
services:
postgres:
image: postgres:16
container_name: the-postgres
environment:
- POSTGRES_USER=postgres
- POSTGRES_PASSWORD=
- POSTGRES_HOST_AUTH_METHOD=trust
volumes:
- the-postgres:/var/lib/postgresql/data
ports:
- 5432:5432
mysql:
image: mysql:8
container_name: the-mysql
environment:
- MYSQL_ALLOW_EMPTY_PASSWORD=yes
volumes:
- the-mysql:/var/lib/mysql
ports:
- 3306:3306
redis:
image: redis:7
container_name: the-redis
volumes:
- the-redis:/data
ports:
- 6379:6379

volumes:
the-postgres:
name: the-postgres
the-mysql:
name: the-mysql
the-redis:
name: the-redis
52 changes: 0 additions & 52 deletions config/.bin/mid

This file was deleted.

100 changes: 0 additions & 100 deletions config/.bin/mid-datastore

This file was deleted.

126 changes: 0 additions & 126 deletions config/.bin/mid-pg

This file was deleted.

Loading
Loading