An open API service indexing awesome lists of open source software.

https://github.com/marksteve/upaggregatesinc.org

The UP Aggregates Incorporated wordpress site
https://github.com/marksteve/upaggregatesinc.org

Last synced: about 1 year ago
JSON representation

The UP Aggregates Incorporated wordpress site

Awesome Lists containing this project

README

          

# upaggregatesinc.org

The UP Aggregates Incorporated wordpress site

## Build

```
docker build --rm -t upaggregatesinc.org .
```

## Configure

```
cat .env
WORDPRESS_DB_HOST=... (defaults to the IP and port of the linked mysql container)
WORDPRESS_DB_USER=... (defaults to "root")
WORDPRESS_DB_PASSWORD=... (defaults to the value of the MYSQL_ROOT_PASSWORD environment variable from the linked mysql container)
WORDPRESS_DB_NAME=... (defaults to "wordpress")
WORDPRESS_TABLE_PREFIX=... (defaults to "", only set this when you need to override the default table prefix in wp-config.php)
WORDPRESS_AUTH_KEY=...
WORDPRESS_SECURE_AUTH_KEY=...
WORDPRESS_LOGGED_IN_KEY=...
WORDPRESS_NONCE_KEY=...
WORDPRESS_AUTH_SALT=...
WORDPRESS_SECURE_AUTH_SALT=...
WORDPRESS_LOGGED_IN_SALT=...
WORDPRESS_NONCE_SALT=... (default to unique random SHA1s)
```

## Run

```
docker run -d --name upaggregatesinc --env-file .env -p 80:80 upaggregatesinc.org
```