schibsted-seals / wordpress-docker-template
Installs: 8
Dependents: 0
Suggesters: 0
Security: 0
Stars: 2
Watchers: 9
Forks: 3
Open Issues: 1
Language:CSS
Requires
- php: >=5.3.0
- fancyguy/webroot-installer: 1.0.0
- wordpress: 4.1
This package is not auto-updated.
Last update: 2025-03-29 19:01:01 UTC
README
Install with composer
If you want to use this as project template, run following command
composer create-project schibsted-seals/wordpress-docker-template my_project_folder/
Requirements
- VirtualBox
- Vagrant
- Vagrant additions:
vagrant plugin install vagrant-vbguest
Vagrant environment
Start vagrant with docker provider
vagrant up --provider=docker --no-parallel
Make copy of local-config.php.dist and save it as local-config.php.
After that wordpress instance should be available under http://192.168.33.15
and http://localhost:8080
Advanced configuration
You can change entry points in proxy/Vagrantfile.proxy
First url is delivered with assigning ip to proxy machine:
config.vm.network "private_network", ip: "192.168.33.15"
later is available due to port forwarding:
config.vm.network "forwarded_port", guest: 80, host: 8080
In case of conflict you may want to change/disable port forwarding.
Custom domain
You can map fake domain to just created machine. To do this put following line into your /etc/hosts
192.168.33.15 mydomain.dev
Shell access
To connect with ssh use
vagrant ssh wordpress-example
password for default user is 123
and is configurable in Dockerfile