generated from chase-roohms/python-template
-
Notifications
You must be signed in to change notification settings - Fork 24
Expand file tree
/
Copy pathdocker-compose-dev.yml
More file actions
30 lines (29 loc) · 874 Bytes
/
docker-compose-dev.yml
File metadata and controls
30 lines (29 loc) · 874 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
# This docker-compose is intended for developers, end-users should use the
# docker-compose in the root of the repository.
services:
transmute:
container_name: transmute-dev
build:
context: .
dockerfile: docker/Dockerfile
restart: unless-stopped
ports:
- 3313:3313
volumes:
# - ./data/:/app/data # Uncomment this line to make the data volume available on the host for debugging.
- transmute_data:/app/data # Comment this line if you uncomment the line above to make the data volume available on the host for debugging.
healthcheck:
test:
- "CMD"
- "wget"
- "-q"
- "-O"
- "/dev/null"
- "--tries=1"
- "http://localhost:3313/api/health/ready"
interval: 30s
timeout: 10s
retries: 3
start_period: 40s
volumes:
transmute_data: