-
-
Notifications
You must be signed in to change notification settings - Fork 2.8k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'develop' into expedition_dateshipping
- Loading branch information
Showing
99 changed files
with
738 additions
and
2,398 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,17 +1,23 @@ | ||
# How to use it ? | ||
# How to use run Dolibarr with docker ? | ||
|
||
This directory is experimental. Scope of its used is not clear and not documented. | ||
If you are looking for a process to run Dolibarr as an official Docker image, you can find it on https://hub.docker.com/r/dolibarr/dolibarr | ||
|
||
|
||
# For experimental dev - TO REMOVE. | ||
## For a fast run of a demo of the local version, you can build the docker image from this current repository by running | ||
|
||
But if you want to execute the version of Dolibarr that is into this current directory as a docker process, you can do it with this commands. | ||
|
||
sudo docker-compose build | ||
|
||
sudo -s | ||
|
||
export HOST_USER_ID=$(id -u) | ||
export HOST_GROUP_ID=$(id -g) | ||
export MYSQL_ROOT_PWD=$(tr -dc A-Za-z0-9 </dev/urandom | head -c 13; echo) | ||
|
||
docker-compose up -d | ||
|
||
Warning: There is no persistency of data. If you need so, you should use instead the official Docker image that you can find on https://hub.docker.com/r/dolibarr/dolibarr | ||
|
||
Warning: There is no persistency of data. This process is for dev purpose only. | ||
|
||
|
||
## For a more robust or a production usage | ||
|
||
If you want to execute an official Docker package, you can find it and read the doc on ihttps://hub.docker.com/r/dolibarr/dolibarr |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.