forked from internetarchive/arklet
-
Notifications
You must be signed in to change notification settings - Fork 7
/
docker-compose.yml
55 lines (51 loc) · 1.06 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
47
48
49
50
51
52
53
54
55
version: "3.7"
services:
postgres:
container_name: arklet_db
image: postgres:14-alpine
env_file:
- ./docker/env.local
volumes:
- postgres:/var/lib/postgresql/data
restart: always
ports:
- "5432:5432"
arklet-minter:
container_name: arklet_minter
restart: always
build:
context: .
target: dev
dockerfile: ./Dockerfile
command: /app/entrypoint.sh
volumes:
- ./ark:/app/ark
- ./ark_import:/app/ark_import
- ./arklet:/app/arklet
env_file:
- ./docker/env.local
environment:
ARKLET_PORT: "8001"
ports:
- "8001:8001"
arklet-resolver:
container_name: arklet_resolver
restart: always
build:
context: .
target: dev
dockerfile: ./Dockerfile
command: /app/entrypoint.sh
volumes:
- ./ark:/app/ark
- ./ark_import:/app/ark_import
- ./arklet:/app/arklet
env_file:
- ./docker/env.local
environment:
ARKLET_PORT: "8000"
RESOLVER: "true"
ports:
- "8000:8000"
volumes:
postgres: