chore: add docker-compose dev stack (#1627)

This commit is contained in:
Jonas L 2022-02-23 08:50:32 +01:00 committed by GitHub
parent 31cf8361be
commit c6b96181ef
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 25 additions and 0 deletions

25
docker-compose.yml Normal file
View File

@ -0,0 +1,25 @@
version: "3.9"
services:
postgresql:
image: postgres
ports:
- 5432:5432
environment:
POSTGRES_USER: libretime
POSTGRES_PASSWORD: libretime
adminer:
image: adminer
ports:
- 8089:8080
rabbitmq:
image: rabbitmq:management-alpine
ports:
- 5672:5672
- 15672:15672
environment:
RABBITMQ_DEFAULT_VHOST: /libretime
RABBITMQ_DEFAULT_USER: libretime
RABBITMQ_DEFAULT_PASS: libretime