hello world

This commit is contained in:
2025-12-24 07:37:53 +00:00
commit a3b2747ec1
14 changed files with 555 additions and 0 deletions

16
compose.yaml Normal file
View File

@@ -0,0 +1,16 @@
services:
postgres:
image: 'postgres:latest'
environment:
- 'POSTGRES_DB=mydatabase'
- 'POSTGRES_PASSWORD=secret'
- 'POSTGRES_USER=myuser'
ports:
- '5432'
rabbitmq:
image: 'rabbitmq:latest'
environment:
- 'RABBITMQ_DEFAULT_PASS=secret'
- 'RABBITMQ_DEFAULT_USER=myuser'
ports:
- '5672'