Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/taktik/odoo-docker-images
Odoo Docker
https://github.com/taktik/odoo-docker-images
Last synced: 8 days ago
JSON representation
Odoo Docker
- Host: GitHub
- URL: https://github.com/taktik/odoo-docker-images
- Owner: taktik
- Created: 2015-01-29T21:38:21.000Z (almost 10 years ago)
- Default Branch: master
- Last Pushed: 2017-02-10T10:22:26.000Z (almost 8 years ago)
- Last Synced: 2024-02-03T00:20:34.899Z (10 months ago)
- Language: Shell
- Homepage:
- Size: 4.69 MB
- Stars: 4
- Watchers: 11
- Forks: 2
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# odoo-docker
This repository contains a collection of docker images.
## Build
Each directory in this repository contains a Dockerfile, and can thus be built using the command:
docker build -t docker.taktik.be/odoo/{directory} https://github.com/taktik/odoo-docker.git#:{directory}
## Alpine Linux
Some images use Alpine Linux (to minimize their size, and also for the security it provides).
### Filebeat
We had to compile filebeat (old logstash-forwarder), to do so:
First run an interpreter inside an Alpine container:
docker run -ti --name test --rm gliderlabs/alpine sh
Then:apk-install build-base bash go git
export GOROOT=/usr/lib/go
export GOPATH=/gopath
export GOBIN=/gopath/bin
export PATH=$PATH:$GOROOT/bin:$GOPATH/bin
wget https://github.com/elastic/beats/archive/v1.0.1.tar.gz
tar -xzvf v1.0.1.tar.gz
cd beats-1.0.1
mkdir -p /gopath/src/github.com/elastic/beats/
mv * /gopath/src/github.com/elastic/beats/
cd /gopath/src/github.com/elastic/beats/filebeat/
make