hello world
This commit is contained in:
16
compose.yaml
Normal file
16
compose.yaml
Normal 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'
|
||||
Reference in New Issue
Block a user