Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/namshi/docker-akeneo
Docker container for Akeneo PIM
https://github.com/namshi/docker-akeneo
Last synced: 1 day ago
JSON representation
Docker container for Akeneo PIM
- Host: GitHub
- URL: https://github.com/namshi/docker-akeneo
- Owner: namshi
- Created: 2015-01-13T07:01:13.000Z (almost 10 years ago)
- Default Branch: master
- Last Pushed: 2015-07-09T05:47:16.000Z (over 9 years ago)
- Last Synced: 2024-04-14T12:15:20.028Z (7 months ago)
- Language: Shell
- Homepage:
- Size: 162 KB
- Stars: 6
- Watchers: 9
- Forks: 6
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Akeneo
This project is a docker container for [Akeneo PIM](http://www.akeneo.com/what-is-a-pim/).
## Using the container
### Pulling the image from docker hub
```
$ docker pull namshi/akeneo
```### Linking the image in a Dockerfile
```
FROM: namshi/akeneo
...
...
```### Building the image
The container accepts the following environment variables
- DATABASE_HOST
- DATABASE_PORT
- DATABASE_NAME
- DATABASE_USER
- DATABASE_PASSWORD```
$ docker build -t='namshi/akeneo' .
```### Launching the container
```
$ docker run -d
-e DATABASE_HOST=db
-e DATABASE_PORT=3306
-e DATABASE_NAME=akeneo
-e DATABASE_USER=root
-e DATABASE_PASSWORD=root
-p 80:80
namshi/akeneo
```