Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[UPD] Build web container based on latest nightly code #1

Draft
wants to merge 2 commits into
base: master
Choose a base branch
from
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