Skip to content
Snippets Groups Projects
Commit 4318d41b authored by Pierre Ozoux's avatar Pierre Ozoux
Browse files

Doc :)

parent 6881aabe
No related branches found
No related tags found
No related merge requests found
.env 0 → 100644
MYSQL_ROOT_PASSWORD=
MAIL_PASS=
MAIL_HOST=mail.indie.host
MAIL_PORT=587
MAIL_USER=
# wordpress
Wordpress application for IndieHosters network
# How to use this image
The easiest is to use our `docker-compose.yml`.
Make sure you have [docker-compose](http://docs.docker.com/compose/install/) installed. And then:
```
git clone https://github.com/indiehosters/wordpress.git
cd wordpress
# edit variables:
vi .env
docker-compose up
```
You can now access your instance on the port 80 of the IP of your machine.
## Accees it from Internet
We recommend the usage of SSL, so the easiest is to modify the `nginx.conf` file.
Once it is done, you can connect to the port of the host by adding this line to `docker-compose.yml`:
```
web:
...
- ports:
- "443:443"
- "80:80"
...
```
## Installation
Once started, you'll arrive at the configuration wizzard.
## Backup
In order to backup, just run the `./BACKUP` script. And copy all the data to a safe place.
......@@ -21,4 +21,4 @@ web:
volumes_from:
- app
ports:
- 80
- "80:80"
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment