Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion .env.example
Original file line number Diff line number Diff line change
@@ -1,9 +1,10 @@
### Mixpost ############################
MIXPOST_RELEASE_NAME=inovector/mixpost
MIXPOST_RELEASE_VERSION=v1.1.1
MIXPOST_RELEASE_VERSION=v1.7.2
MIXPOST_APP_NAME='Mixpost'
MIXPOST_APP_URL=http://127.0.0.1:80
MIXPOST_APP_PORT=CHANGE_ME_HERE
MIXPOST_APP_KEY='CHANGE_ME_HERE'
MIXPOST_DB_DATABASE='CHANGE_ME_HERE'
MIXPOST_DB_USERNAME='CHANGE_ME_HERE'
MIXPOST_DB_PASSWORD='CHANGE_ME_HERE'
Expand Down
7 changes: 5 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,8 @@ Checkout the meaning for the environments variables:

* ``MIXPOST_APP_PORT``, Mixpost App Port, like ``9000``.

* ``MIXPOST_APP_KEY``, Mixpost app key, [generated with this link.](https://mixpost.app/tools/encryption-key-generator)

* ``MIXPOST_DB_DATABASE``, Mixpost db name, like ``mixpost``.

* ``MIXPOST_DB_USERNAME``, Mixpost user name, don't use the name with spaces (temporary issue).
Expand All @@ -33,10 +35,11 @@ Pull the images and run the containers, executing the following command:
docker-compose up -d
```

An admin user will be created automatically. Check the mixpost container logs to find out the password, executing the following command:
An admin user will be created automatically with the following login:

```
docker-compose logs -f mixpost
Email: admin@example.com
Password: changeme
```

You can log in to Mixpost at ``/mixpost`` using the admin user account created.
Expand Down
1 change: 1 addition & 0 deletions docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ services:
environment:
APP_NAME: ${MIXPOST_APP_NAME}
APP_URL: ${MIXPOST_APP_URL}
APP_KEY: ${MIXPOST_APP_KEY}
DB_DATABASE: ${MIXPOST_DB_DATABASE}
DB_USERNAME: ${MIXPOST_DB_USERNAME}
DB_PASSWORD: ${MIXPOST_DB_PASSWORD}
Expand Down