-
Notifications
You must be signed in to change notification settings - Fork 157
/
docker-compose.yml
46 lines (41 loc) · 1.12 KB
/
docker-compose.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
# This file helps us easily spin up our Postgres and Redis databases in local
# development (this is not meant to be used in production), bypassing the need
# to install and configure these services on our local machines.
services:
browserless:
container_name: oyster-browserless
image: ghcr.io/browserless/chromium
ports:
- 3333:3000
postgres:
container_name: oyster-postgres
image: postgres:15-alpine
ports:
# We're using port 5433 to avoid any potential conflicts.
- 5433:5432
volumes:
- pg_data:/var/lib/postgresql/data
environment:
POSTGRES_DB: oyster
POSTGRES_PASSWORD: oyster
POSTGRES_USER: oyster
postgres-test:
container_name: oyster-postgres-test
image: postgres:15-alpine
ports:
# We're using port 5434 to avoid any potential conflicts.
- 5434:5432
environment:
POSTGRES_DB: oyster_test
POSTGRES_PASSWORD: oyster
POSTGRES_USER: oyster
redis:
container_name: oyster-redis
image: redis:latest
ports:
- 6380:6379
volumes:
- redis_data:/data
volumes:
pg_data:
redis_data: