mirror of
https://git.wownero.com/lza_menace/wowstash.git
synced 2024-08-15 00:33:15 +00:00
15 lines
269 B
YAML
15 lines
269 B
YAML
|
version: '3'
|
||
|
services:
|
||
|
db:
|
||
|
image: postgres:9.6.15-alpine
|
||
|
ports:
|
||
|
- 5432:5432
|
||
|
environment:
|
||
|
POSTGRES_PASSWORD: ${DB_PASS}
|
||
|
POSTGRES_USER: ${DB_USER}
|
||
|
POSTGRES_DB: ${DB_NAME}
|
||
|
redis:
|
||
|
image: redis:latest
|
||
|
ports:
|
||
|
- 6379:6379
|