Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 1 addition & 3 deletions 13.0/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -53,11 +53,9 @@ RUN set -x; \

# Install Odoo
ENV ODOO_VERSION 13.0
ARG ODOO_RELEASE=20200121
ARG ODOO_SHA=770d71cfafb9a8f8419b88f8033b964d5742ad57
ARG ODOO_RELEASE=latest
RUN set -x; \
curl -o odoo.deb -sSL http://nightly.odoo.com/${ODOO_VERSION}/nightly/deb/odoo_${ODOO_VERSION}.${ODOO_RELEASE}_all.deb \
&& echo "${ODOO_SHA} odoo.deb" | sha1sum -c - \
&& dpkg --force-depends -i odoo.deb \
&& apt-get update \
&& apt-get -y install -f --no-install-recommends \
Expand Down
15 changes: 15 additions & 0 deletions 13.0/docker-compose.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
version: '2'
services:
web:
build:
context: ./
depends_on:
- db
ports:
- "8069:8069"
db:
image: postgres:12
environment:
- POSTGRES_DB=postgres
- POSTGRES_USER=odoo
- POSTGRES_PASSWORD=odoo