mirror of
https://github.com/ajayyy/SponsorBlockServer.git
synced 2024-11-10 09:07:47 +01:00
15 lines
No EOL
300 B
YAML
15 lines
No EOL
300 B
YAML
version: '3'
|
|
services:
|
|
postgres:
|
|
container_name: database-co
|
|
image: postgres:alpine
|
|
environment:
|
|
- POSTGRES_USER=${PG_USER}
|
|
- POSTGRES_PASSWORD=${PG_PASS}
|
|
ports:
|
|
- 5432:5432
|
|
redis:
|
|
container_name: redis-ci
|
|
image: redis:alpine
|
|
ports:
|
|
- 6379:6379 |