-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdocker-compose.development.yml
More file actions
53 lines (48 loc) · 1.15 KB
/
docker-compose.development.yml
File metadata and controls
53 lines (48 loc) · 1.15 KB
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
47
48
49
50
51
52
53
version: '3.8'
services:
db:
image: postgres:14
environment:
POSTGRES_PASSWORD: password
POSTGRES_DB: codex
POSTGRES_USER: codex
volumes:
- "./scripts/docker/db/:/docker-entrypoint-initdb.d"
- ".pgdata:/var/lib/postgresql/data/"
ports:
- "5432:5432"
#
# Uncomment this and run `docker-compose up -d statsd` to be able to push real metrics.
# You will need a `DD_API_KEY` set in your local environment; get/create one at:
# https://app.datadoghq.com/organization-settings/api-keys
#statsd:
# image: gcr.io/datadoghq/agent:7
# environment:
# DD_API_KEY: ${DD_API_KEY}
# DD_SITE: datadoghq.com
# DD_HISTOGRAM_PERCENTILES: 0.95 0.99
# ports:
# - "8125:8125/udp"
pgAdmin:
image: dpage/pgadmin4
environment:
PGADMIN_DEFAULT_EMAIL: admin@usecodex.com
PGADMIN_DEFAULT_PASSWORD: password
ports:
- "8080:80"
depends_on:
- db
redis:
image: redis:6.2.6
volumes:
- ./redis.conf:/usr/local/etc/redis/redis.conf
ports:
- "6379:6379"
networks:
default:
name: codex-api
volumes:
static_data:
certs:
html:
vhost: