mirror of
https://github.com/ajayyy/SponsorBlockServer.git
synced 2025-05-16 22:33:57 +02:00
13 lines
No EOL
239 B
YAML
13 lines
No EOL
239 B
YAML
version: '3'
|
|
services:
|
|
postgres:
|
|
image: postgres:alpine
|
|
environment:
|
|
- POSTGRES_USER=${PG_USER}
|
|
- POSTGRES_PASSWORD=${PG_PASS}
|
|
ports:
|
|
- 5432:5432
|
|
redis:
|
|
image: redis:alpine
|
|
ports:
|
|
- 6379:6379 |