Saltar al contenido

Ejemplo de código de Odoo 13-docker-compose

Haz todo lo posible por entender el código de forma correcta previamente a usarlo a tu proyecto y si tdeseas aportar algo puedes dejarlo en la sección de comentarios.

Ejemplo: odoo 14 docker compose

version: '1.0'services:  # Information needed set up an odoo web  # application container.  web:	image: odoo:14.0	container_name: odoo_14	depends_on:    	- db	# Port Mapping	#We need to map the port on the host machine(left side) to the	#Port inside the container on the right. By default Odoo 	#Runs on port 8069 and inside the container, it is running on 8069.        #Locally we are going to access it via localhost:9000	ports:  	- 9000:8069	# Data Volumes	# --------	#	# This defines files that we are sharing from the host machine	# into the container.	#	#Here we are using to map the extra add ons or enterprise addons	# as well as the configuration file. Also, we need to map the data 	#directory where Odoo will storesome attachments etc.	volumes:  	- ./data/odoo:/var/lib/odoo        - ./config:/etc/odoo        - ./addons:/mnt/extra        - ./enterprise:/mnt/enterprise	#Username and password of the Host DB	# Make sure to give the same credentials	#inside the postgres service	environment:  	- HOST=db  	- USER=odoo14  	- PASSWORD=odoo14  # All of the information needed to start up a Postgresql  # container.  db:	image: postgres:10	container_name: postgres_10	ports:      	  -5432:5432	#Add this volume to map the Postgres data. It may be lost	#if we execute docker-compose down where all the data	#in the layered file system will be lost    	volumes:      	  - ./data/postgres:/var/lib/postgresql/data	#make sure to use the same which were given above.	environment:  	- POSTGRES_PASSWORD=odoo14  	- POSTGRES_USER=odoo14  	- POSTGRES_DB=postgres

Si haces scroll puedes encontrar las notas de otros sys admins, tú también puedes dejar el tuyo si lo crees conveniente.

¡Haz clic para puntuar esta entrada!
(Votos: 0 Promedio: 0)



Utiliza Nuestro Buscador

Deja una respuesta

Tu dirección de correo electrónico no será publicada. Los campos obligatorios están marcados con *