mirror of
https://github.com/odoocker/odoocker
synced 2025-11-04 15:19:22 +01:00
36 lines
627 B
YAML
36 lines
627 B
YAML
services:
|
|
odoo:
|
|
restart: 'no'
|
|
ports:
|
|
- 8069:8069
|
|
- 8071:8071
|
|
- 8072:8072
|
|
|
|
postgres:
|
|
restart: 'no'
|
|
ports:
|
|
- 5432:5432
|
|
|
|
nginx:
|
|
restart: 'no'
|
|
|
|
nginx-proxy:
|
|
restart: 'no'
|
|
ports:
|
|
- 80:80
|
|
|
|
pgadmin:
|
|
image: dpage/pgadmin4:7.1
|
|
restart: unless-stopped
|
|
expose:
|
|
- 80
|
|
volumes:
|
|
- pgadmin-data:${PGADMIN_DATA}
|
|
environment:
|
|
- PGADMIN_DEFAULT_EMAIL
|
|
- PGADMIN_DEFAULT_PASSWORD
|
|
- VIRTUAL_HOST=${PGADMIN_VIRTUAL_HOST}
|
|
- LETSENCRYPT_HOST=${PGADMIN_LETSENCRYPT_HOST}
|
|
- LETSENCRYPT_EMAIL
|
|
networks:
|
|
- internal |