-
Notifications
You must be signed in to change notification settings - Fork 750
Expand file tree
/
Copy pathdocker-compose.debug.yml
More file actions
35 lines (30 loc) · 956 Bytes
/
docker-compose.debug.yml
File metadata and controls
35 lines (30 loc) · 956 Bytes
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
# This docker-compose replicates the test workflow happening on GitHub during a PR / build check.
# To be used from the debug.sh script.
version: '3.8'
services:
app:
image: ghcr.io/ietf-tools/datatracker-app-base:latest
command: -f /dev/null
working_dir: /__w/datatracker/datatracker
entrypoint: tail
hostname: app
volumes:
- /var/run/docker.sock:/var/run/docker.sock
environment:
CI: 'true'
GITHUB_ACTIONS: 'true'
HOME: /github/home
deploy:
resources:
limits:
cpus: '2'
memory: '7GB'
db:
image: ghcr.io/ietf-tools/datatracker-db:latest
restart: unless-stopped
volumes:
- postgresdb-data:/var/lib/postgresql/data
blobstore:
image: ghcr.io/ietf-tools/datatracker-devblobstore:latest
volumes:
postgresdb-data: