Skip to content

david-batranu/dexonline-docker

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

39 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Install docker and docker-compose

Start the docker service (some distros start it by default).

Clone this repo

git clone git@github.com:david-batranu/dexonline-docker.git
cd dexonline-docker

Grab code and database

git clone git@github.com:dexonline/dexonline.git src/dexonline
wget -O ./db/dex-database.sql.gz https://dexonline.ro/static/download/dex-database.sql.gz

Make www-data (container user: 33) owner, allow current user to edit

Linux:

sudo chown 33:33 -R src
sudo setfacl -R -m u:33:rwX,u:$USER:rwX src
sudo setfacl -dR -m u:33:rwX,u:$USER:rwX src

If you are using SELinux in Enforcing mode (probably you do if you use a RedHat distro), you have to also run:

sudo chcon -Rt svirt_sandbox_file_t .

macOS:

sudo chown -R 33:33 src
sudo chmod -R +a "user:$USER allow delete,readattr,writeattr,readextattr,writeextattr,readsecurity,writesecurity,chown,list,search,add_file,add_subdirectory,delete_child,file_inherit,directory_inherit" src

Start containers

docker-compose up -d

Firewall

On Linux machines using firewalld you have to add the network interface created by docker to the trusted zone:

network=$(docker network ls | grep dexonline | awk -F ' ' '{print $1}')
gateway=$(docker network inspect ${network} | grep Gateway | grep -Po "[\d\.]+")
interface=$(ifconfig | awk -v g="${gateway}" -F ' ' '$1=="inet" && $2==g {print old} {old=$1}' | sed 's/:$//')
sudo firewall-cmd --permanent --zone=trusted --add-interface=${interface}
sudo firewall-cmd --reload

Setup & import database

docker-compose exec mariadb bash
mysql -uroot -padmin -e "create database dexonline character set utf8mb4"
pv /root/db/dex-database.sql.gz | zcat | mysql -uroot -padmin dexonline
^D

Note: The last command may take up a couple of minutes to complete.

Setup the code

docker-compose exec httpd bash -c 'tools/setup.sh'

Update Config.php

Linux

sed -i "s|DATABASE = 'mysql://root@localhost/dexonline'|DATABASE = 'mysql://root:admin@mariadb/dexonline'|" src/dexonline/Config.php
sed -i "s|URL_PREFIX = '/dexonline/www/'|URL_PREFIX = '/'|" src/dexonline/Config.php

macOS

sed -i "" "s|DATABASE = 'mysql://root@localhost/dexonline'|DATABASE = 'mysql://root:admin@mariadb/dexonline'|" src/dexonline/Config.php
sed -i "" "s|URL_PREFIX = '/dexonline/www/'|URL_PREFIX = '/'|" src/dexonline/Config.php

Migrate the database

docker-compose exec httpd bash -c 'php tools/migration.php'

And you're done! Open localhost in your browser to access the website.

make.sh script

Instead of following the steps above, you can also try the automated method, via the make.sh script. Just clone this repo and run ./make.sh. Use ./make.sh tasks to get the list of all available tasks, and ./make task1 task2 to run multiple tasks.

About

docker-compose orchestration for dexonline

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published