mirror of
https://github.com/ajayyy/SponsorBlockServer.git
synced 2024-11-10 01:02:30 +01: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 |