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
- Host: GitHub
- URL: https://github.com/marksteve/upaggregatesinc.org
- Owner: marksteve
- Created: 2014-06-06T16:45:04.000Z (about 12 years ago)
- Default Branch: master
- Last Pushed: 2017-04-01T14:00:45.000Z (about 9 years ago)
- Last Synced: 2025-01-30T14:24:06.578Z (over 1 year ago)
- Language: PHP
- Homepage: http://upaggregatesinc.org
- Size: 16.4 MB
- Stars: 1
- Watchers: 4
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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
```