Skip to content

Commit 7646730

Browse files
committed
remove env var quotes
1 parent b6de18e commit 7646730

File tree

1 file changed

+11
-10
lines changed

1 file changed

+11
-10
lines changed

deployment/docker-compose.yml

Lines changed: 11 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -8,13 +8,13 @@ services:
88
environment:
99
- PUID=1000
1010
- PGID=1000
11-
- URL=duino.app # update this, main domain
12-
- SUBDOMAINS=au # update this, subdomain of compile server
11+
- URL=example.com # update this, main domain
12+
- SUBDOMAINS=duinoapp # update this, subdomain of compile server
1313
- VALIDATION=http
1414
- [email protected] # update this, contact email for letsencrypt incase something goes wrong
15-
- ONLY_SUBDOMAINS=true # update this, only encypt subdomains (au.duino.app)
15+
- ONLY_SUBDOMAINS=true # update this, only encypt subdomains (duinoapp.example.com)
1616
volumes:
17-
- /home/ubuntu/nginx:/config # update this, location on main server for nginx configs
17+
- /home/ubuntu/nginx:/config # update this (optional), location on main server for nginx configs
1818
ports:
1919
- 443:443
2020
- 80:80
@@ -26,9 +26,10 @@ services:
2626
container_name: duinoapp
2727
restart: unless-stopped
2828
environment: # update these, server info displayed to users
29-
- SERVER_INFO_NAME="Example Server"
30-
- SERVER_INFO_LOCATION="Australia/Sydney"
31-
- SERVER_INFO_COUNTRY="AU"
32-
- SERVER_INFO_OWNER="Duino App"
33-
- SERVER_INFO_WEBSITE="duino.app"
34-
- SERVER_INFO_DESCRIPTION="Just Another Example Server"
29+
- SERVER_INFO_NAME=Example Server
30+
- SERVER_INFO_LOCATION=Australia/Sydney
31+
# must be a two letter country code
32+
- SERVER_INFO_COUNTRY=AU
33+
- SERVER_INFO_OWNER=Jane Smith
34+
- SERVER_INFO_WEBSITE=site.example.com
35+
- SERVER_INFO_DESCRIPTION=Just Another Example Server

0 commit comments

Comments
 (0)