-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcompose.yaml
More file actions
45 lines (38 loc) · 776 Bytes
/
compose.yaml
File metadata and controls
45 lines (38 loc) · 776 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
services:
postgres:
image: postgres:latest
env_file:
- .env
container_name: postgres
restart: unless-stopped
ports:
- "127.0.0.1:5433:5432"
volumes:
- postgres-data:/var/lib/postgresql/data
- ./init-db.sh:/docker-entrypoint-initdb.d/init-db.sh
networks:
- superset-network
pgadmin:
image: dpage/pgadmin4:latest
env_file:
- .env
ports:
- "127.0.0.1:5050:80"
networks:
- superset-network
superset:
image: apache/superset:latest
env_file:
- .env
ports:
- "8088:8088"
depends_on:
- postgres
command: superset run -p 8088
networks:
- superset-network
volumes:
postgres-data:
networks:
superset-network:
driver: bridge