-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdocker-compose.remote.test.yml
More file actions
37 lines (35 loc) · 929 Bytes
/
docker-compose.remote.test.yml
File metadata and controls
37 lines (35 loc) · 929 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
36
37
services:
md-test:
image: ${TAG}
restart: "no"
environment:
DEBUG: 1
DOMAIN: md.test
PDNS_API_KEY: testkey123
PDNS_DIST_KEY: testkey123
DEFAULT_NAMESERVER: 127.0.0.1
HOST_MACHINE_NAME: DC1
POSTGRES_USER: user1
POSTGRES_PASSWORD: password123
SECRET_KEY: 6a0452ae20cab4e21b6e9d18fa4b7bf397dd66ec3968b2d7407694278fd84cce
POSTGRES_HOST: postgres
command: sh -c "python -m pytest -n auto -W ignore::DeprecationWarning -W ignore::coverage.exceptions.CoverageWarning -vv"
postgres:
image: postgres:16
restart: "no"
environment:
POSTGRES_USER: user1
POSTGRES_PASSWORD: password123
expose:
- "5432"
logging:
driver: "none"
dragonfly:
image: 'docker.dragonflydb.io/dragonflydb/dragonfly'
expose:
- "6379"
deploy:
resources:
limits:
cpus: '0.5'
memory: 0.5GiB