diff --git a/.env.example.docker b/.env.example.docker
new file mode 100644
index 0000000000000000000000000000000000000000..f102446abc0008657778a19946a1e6d7e044a4e0
--- /dev/null
+++ b/.env.example.docker
@@ -0,0 +1,53 @@
+APP_NAME="Pixelfed Prod"
+APP_ENV=production
+APP_KEY=
+APP_DEBUG=false
+
+APP_URL=http://localhost
+APP_DOMAIN="localhost"
+ADMIN_DOMAIN="localhost"
+SESSION_DOMAIN="localhost"
+SESSION_SECURE_COOKIE=true
+TRUST_PROXIES="*"
+
+LOG_CHANNEL=stack
+
+DB_CONNECTION=mysql
+DB_HOST=db
+DB_PORT=3306
+DB_DATABASE=pixelfed
+DB_USERNAME=pixelfed
+DB_PASSWORD=pixelfed
+
+BROADCAST_DRIVER=log
+CACHE_DRIVER=redis
+SESSION_DRIVER=redis
+QUEUE_DRIVER=redis
+
+REDIS_SCHEME=tcp
+REDIS_HOST=redis
+REDIS_PASSWORD=null
+REDIS_PORT=6379
+
+MAIL_DRIVER=log
+MAIL_HOST=smtp.mailtrap.io
+MAIL_PORT=2525
+MAIL_USERNAME=null
+MAIL_PASSWORD=null
+MAIL_ENCRYPTION=null
+MAIL_FROM_ADDRESS="pixelfed@example.com"
+MAIL_FROM_NAME="Pixelfed"
+
+OPEN_REGISTRATION=true
+ENFORCE_EMAIL_VERIFICATION=true
+PF_MAX_USERS=1000
+
+MAX_PHOTO_SIZE=15000
+MAX_CAPTION_LENGTH=150
+MAX_ALBUM_LENGTH=4
+
+ACTIVITY_PUB=false
+AP_REMOTE_FOLLOW=false
+AP_INBOX=false
+PF_COSTAR_ENABLED=false
+
diff --git a/README.md b/README.md
index 806d983b64807e72ba6f8aa041ae8108e40f669a..c095a75c54ed126b27fbdd1841834d2021d17cc2 100644
--- a/README.md
+++ b/README.md
@@ -28,11 +28,19 @@ Pixelfed is open-sourced software licensed under the AGPL license.
 The ways you can communicate on the project are below. Before interacting, please
 read through the [Code Of Conduct](CODE_OF_CONDUCT.md).
 
-* IRC: #pixelfed on irc.freenode.net ([#freenode_#pixelfed:matrix.org through
-Matrix](https://matrix.to/#/#freenode_#pixelfed:matrix.org))
-* Project on Mastodon: [@pixelfed@mastodon.social](https://mastodon.social/@pixelfed)
+* IRC: [#pixelfed](irc://chat.freenode.net/pixelfed) on irc.freenode.net
+* Matrix: [#pixelfed:matrix.org](https://matrix.to/#/#pixelfed:matrix.org)
+* Mastodon: [@pixelfed@mastodon.social](https://mastodon.social/@pixelfed)
 * E-mail: [hello@pixelfed.org](mailto:hello@pixelfed.org)
 
+### Development
+
+For more development focused communication methods, please visit the following:
+
+* IRC: [#pixelfed-dev](irc://chat.freenode.net/pixelfed-dev) on irc.freenode.net
+* Matrix: [#pixelfed-dev:matrix.org](https://matrix.to/#/#pixelfed-dev:matrix.org)
+* Mastodon: [@pixeldev@mastodon.social](https://mastodon.social/@pixeldev)
+
 
 ## Pixelfed Sponsors
 
@@ -42,4 +50,4 @@ We would like to extend our thanks to the following sponsors for funding Pixelfe
 Discovery](https://nlnet.nl/discovery/), part of the [Next Generation
 Internet](https://ngi.eu) initiative.
 - [<img src="https://td-misc-public.s3.amazonaws.com/OscillasLogo.png" width="100px">](https://oscillas.com/)
-- Managed Pixelfed Hosting by [Spacebear](https://app.spacebear.ee/)
\ No newline at end of file
+- Managed Pixelfed Hosting by [Spacebear](https://app.spacebear.ee/)
diff --git a/docker-compose.yml b/docker-compose.yml
index 9dc61f2051a6778582404b2756eb97c169e3d406..b0cfc8b19a8a80a438cbeb1318a4e4dc890d33bf 100644
--- a/docker-compose.yml
+++ b/docker-compose.yml
@@ -33,6 +33,7 @@ services:
     volumes:
       - "app-storage:/var/www/storage"
       - "app-bootstrap:/var/www/bootstrap"
+      - "./.env:/var/www/.env"
     networks:
       - external
       - internal