mirror of
https://github.com/kiteco/kiteco-public.git
synced 2022-11-21 08:18:27 +03:00
13 lines
226 B
YAML
13 lines
226 B
YAML
version: '3'
|
|
services:
|
|
test-db:
|
|
image: postgres:alpine
|
|
restart: always
|
|
environment:
|
|
POSTGRES_USER: accountuser
|
|
POSTGRES_PASSWORD: XXXXXXX
|
|
POSTGRES_DB: account_test
|
|
|
|
ports:
|
|
- 5432:5432
|