Sign inSign up

terenceccwu/odoo

By terenceccwu

Updated almost 6 years ago

Image
0

302

terenceccwu/odoo repository overview

Sample Usage

shell command
docker run -d -p 10022:22 -v $(pwd):/root --name odoo terenceccwu/odoo:11-e3-py37-ent-ssh
docker-compose.yml
version: "3.3"
services:
  app:
    image: terenceccwu/odoo:11-e3-py37-ent-ssh
    ports:
      - "10022:22"
    environment:
      - SSH_ROOT_PASSWORD=pw
    depends_on:
      - db
  db:
    image: postgres
    volumes:
      - db-data:/var/lib/postgresql/data
    environment:
      POSTGRES_USER: odoo
      POSTGRES_PASSWORD: password
volumes:
  db-data:
vscode config

~/.ssh/config

Host <hostname>
    HostName <hostname>
    User root
    Port 10022
    StrictHostKeyChecking no
    UserKnownHostsFile /dev/null

Tag summary

Content type

Image

Digest

Size

407.2 MB

Last updated

almost 6 years ago

docker pull terenceccwu/odoo