mirror of
https://github.com/roleypoly/roleypoly-v1.git
synced 2025-04-25 12:19:10 +00:00
19 lines
No EOL
440 B
YAML
19 lines
No EOL
440 B
YAML
version: '2.1'
|
|
services:
|
|
|
|
pg:
|
|
image: postgres:10-alpine
|
|
container_name: roleypoly-pg
|
|
ports:
|
|
- 5432:5432
|
|
environment:
|
|
POSTGRES_PASSWORD: 19216801
|
|
POSTGRES_DB: roleypoly
|
|
POSTGRES_USER: roleypoly
|
|
POSTGRES_INITDB_ARGS: -A trust
|
|
|
|
nats:
|
|
image: nats:1.4.1-linux
|
|
container_name: roleypoly-nats
|
|
ports:
|
|
- 4222:4222 |