-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
68 lines (62 loc) · 1.27 KB
/
docker-compose.yml
File metadata and controls
68 lines (62 loc) · 1.27 KB
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
56
57
58
59
60
61
62
63
64
65
66
67
68
version: '3.3'
services:
ic-webapp:
image: ic-webapp:1.0
container_name: ic-webapp
build:
context: .
environment:
- ODOO_URL=https://www.odoo.com/fr_FR/web/login
- PGADMIN_URL=http://192.168.99.10:5055/login?next=%2F
depends_on:
- postgres
networks:
- net-webapp
ports:
- 8080:8080
# command: python3 app.py
restart: unless-stopped
postgres:
image: postgres
container_name: postgres
environment:
- POSTGRES_USER=admin
- POSTGRES_PASSWORD=QWERTY!
volumes:
- v_postgres:/data/postgres
ports:
- 5432:5432
networks:
- net-webapp
restart: unless-stopped
pgadmin:
image: dpage/pgadmin4
container_name: pgadmin
ports:
- 5055:80
environment:
- PGADMIN_DEFAULT_EMAIL=abc@gmail.com
- PGADMIN_DEFAULT_PASSWORD=AZERY!
networks:
- net-webapp
depends_on:
- postgres
restart: unless-stopped
odoo:
image: odoo
container_name: odoo
ports:
- 8069:8069
environment:
- POSTGRES_USER=admin
- POSTGRES_PASSWORD=QWERTY!
depends_on:
- postgres
networks:
- net-webapp
restart: unless-stopped
networks:
net-webapp:
driver: bridge
volumes:
v_postgres: