Skip to content

Commit 561083d

Browse files
config[docker]: .env.template; Removed original .env
1 parent 6b28348 commit 561083d

File tree

4 files changed

+21
-7
lines changed

4 files changed

+21
-7
lines changed

.env renamed to .env.template

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -12,8 +12,8 @@ PGID=1000
1212
#
1313
# Custom domain and certificates
1414
#
15-
DOMAIN=crismiranda.net
16-
SSL_ACME_EMAIL=crism60@gmail.com
15+
DOMAIN=example.com
16+
SSL_ACME_EMAIL=you@mail.com
1717

1818
#
1919
# VPN DNS (e.g: https://support.nordvpn.com/General-info/1047409702/What-are-your-DNS-server-addresses.htm)
@@ -55,8 +55,8 @@ DOWNLOADS=/data/ssd/mediabox/downloads
5555
# Calibre credentials
5656
# PASSWORD => md5 hash for the calibre desktop gui.
5757
#
58-
CALIBRE_USERNAME=cmiranda
59-
CALIBRE_PASSWORD=9537d74bf1388c80c5745127b20f87d2
58+
CALIBRE_USERNAME=yourusername
59+
CALIBRE_PASSWORD=8543a52ww3456g6785725427b20f87d2
6060

6161
#
6262
# The latest tag will get you the original Organizr v2 image.

.github/workflows/multimedia-stack-deployment.yml

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,4 +21,12 @@ jobs:
2121
- uses: actions/checkout@v2
2222

2323
- name: Main Stack Deployment + VPN Protected Torrenting
24+
env:
25+
PUID: 1000
26+
PGID: 1000
27+
DATA: /data
28+
CONTAINERS: /data/containers
29+
DOWNLOADS: /data/downloads
30+
ORGANIZR_TAG: latest
31+
DELUGE_THEME: darker
2432
run: docker-compose -f docker-compose.yml -f docker-compose.torrents-on-vpn.yml up -d

.gitignore

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
# .env.template must be copied
2+
.env

README.md

Lines changed: 7 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Mediabox
1+
# :tv: Mediabox
22

33
![](https://github.com/cristianmiranda/mediabox/workflows/Multimedia%20Stack%20Deployment/badge.svg)
44

@@ -31,8 +31,12 @@
3131
* [Docker-Compose](https://docs.docker.com/compose/)
3232

3333
## Setup
34-
* Replace all paths in `.env` with whatever makes sense for you (follow the comments above each property).
35-
* It might be a good idea to clone this repo inside the external disk if you plan to use it on different machines/architectures.
34+
1. Copy `.env.template`
35+
```bash
36+
cp .env.template .env
37+
```
38+
2. Replace variables on `.env` with whatever makes sense to you (follow the comments above each property).
39+
3. It might be a good idea to clone this repo inside the external disk if you plan to use it on different machines/architectures.
3640

3741
## Starting
3842
```bash

0 commit comments

Comments
 (0)