forked from tableflowhq/csv-import
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathdocker-compose-image.yml
More file actions
55 lines (48 loc) · 1012 Bytes
/
Copy pathdocker-compose-image.yml
File metadata and controls
55 lines (48 loc) · 1012 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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
version: "1"
services:
postgres:
extends:
file: docker-compose.base.yml
service: postgres
scylla:
extends:
file: docker-compose.base.yml
service: scylla
backend:
image: tableflow/admin-server
depends_on:
postgres:
condition: service_healthy
scylla:
condition: service_healthy
admin-ui:
depends_on:
backend:
condition: service_healthy
image: tableflow/admin-ui
platform: linux/amd64
# Un-comment if using Apple silicon
#platform: linux/arm64
container_name: admin-ui
ports:
- "3000:80"
networks:
- app_network
importer-ui:
depends_on:
backend:
condition: service_healthy
image: tableflow/importer-ui
platform: linux/amd64
# Un-comment if using Apple silicon
#platform: linux/arm64
container_name: importer-ui
ports:
- "3001:80"
networks:
- app_network
networks:
app_network:
driver: bridge
volumes:
tmp: