forked from DoDGOSS/ozone
-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
50 lines (44 loc) · 870 Bytes
/
docker-compose.yml
File metadata and controls
50 lines (44 loc) · 870 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
version: '3'
services:
ozone:
build:
context: .
dockerfile: Dockerfile
container_name: "ozone"
entrypoint: /code/start.sh
environment:
OWF_DB_HOST: 'postgresdb'
ports:
- "8000:8000"
networks:
- owf
ozone_widgets:
image: "ozone/widgets"
build:
context: "./ozone-example-widgets"
container_name: "ozone_widgets"
ports:
- "4000:4000"
networks:
- owf
postgresdb:
image: postgres
container_name: "ozone_postgres"
environment:
POSTGRES_PASSWORD: postgres
ports:
- "5432:5432"
networks:
- owf
ozone_pgadmin:
image: dpage/pgadmin4
environment:
PGADMIN_DEFAULT_EMAIL: admin@goss.com
PGADMIN_DEFAULT_PASSWORD: password
ports:
- "5555:80"
networks:
- owf
networks:
owf:
driver: bridge