Commit c0d58456be4f81732d31b16d8de4867185b246ac

Authored by Олександр Басенко
1 parent 9893957ac3
Exists in master

remove generated file

Showing 1 changed file with 0 additions and 51 deletions Inline Diff

docker-compose.yml
1 version: '2' File was deleted
2 services:
3 postgres:
4 image: 2bas/postgres
5 container_name: db
6 restart: always
7 volumes:
8 - postgres_pgdata_foss:/var/lib/postgresql/data
9 environment:
10 - POSTGRES_USER=webportal
11 - POSTGRES_PASSWORD=XrUXlw1YlASdJgID
12
13 odoo:
14 build: ./odoo
15 image: odoo/webportal
16 container_name: odoo
17 restart: always
18 links:
19 - postgres:db
20 depends_on:
21 - postgres
22 volumes:
23 - odoo_repo_foss:/opt/odoo
24 - odoo_lib_foss:/var/lib/odoo
25 - odoo_etc_foss:/etc/odoo
26 - odoo_backup_foss:/backup
27
28 nginx:
29 build: ./nginx
30 image: nginx/webportal
31 container_name: nginx
32 restart: always
33 links:
34 - odoo:odoo
35 ports:
36 - "80:80"
37 - "443:443"
38 depends_on:
39 - odoo
40
41 volumes:
42 odoo_repo_foss:
43 external: true
44 odoo_lib_foss:
45 external: true
46 odoo_etc_foss:
47 external: true
48 odoo_backup_foss:
49 external: true
50 postgres_pgdata_foss:
51 external: true