mirror of
				https://github.com/odoocker/odoocker
				synced 2025-11-04 15:19:22 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			15 lines
		
	
	
		
			539 B
		
	
	
	
		
			XML
		
	
	
	
	
	
			
		
		
	
	
			15 lines
		
	
	
		
			539 B
		
	
	
	
		
			XML
		
	
	
	
	
	
<?xml version="1.0" encoding="utf-8"?>
 | 
						|
<odoo>
 | 
						|
    <!-- When initializing Odoo through Docker this parameter is missing. -->
 | 
						|
    <record id="report_url" model="ir.config_parameter">
 | 
						|
        <field name="key">report.url</field>
 | 
						|
        <field name="value">http://127.0.0.1:8069</field>
 | 
						|
    </record>
 | 
						|
 | 
						|
    <!-- When initializing Odoo with S3 storage. -->
 | 
						|
    <record id="ir_attachment_location" model="ir.config_parameter">
 | 
						|
        <field name="key">ir_attachment.location</field>
 | 
						|
        <field name="value">s3</field>
 | 
						|
    </record>
 | 
						|
</odoo>
 |