Skip to content

Commit ea619b9

Browse files
authored
Update 02.docker.md (#2495)
Better like this: - the end quote was missing - this preserves the new lines when copy pasted 🎉
1 parent 84c91a2 commit ea619b9

File tree

1 file changed

+25
-24
lines changed

1 file changed

+25
-24
lines changed

content/docs/02.installation/02.docker.md

+25-24
Original file line numberDiff line numberDiff line change
@@ -81,30 +81,31 @@ Managing a large configuration via a single YAML string can be tedious. To make
8181
First, define an environment variable:
8282

8383
```bash
84-
export KESTRA_CONFIGURATION="datasources:
85-
postgres:
86-
url: jdbc:postgresql://postgres:5432/kestra
87-
driverClassName: org.postgresql.Driver
88-
username: kestra
89-
password: k3str4
90-
kestra:
91-
server:
92-
basicAuth:
93-
enabled: false
94-
username: "[email protected]" # it must be a valid email address
95-
password: kestra
96-
repository:
97-
type: postgres
98-
storage:
99-
type: local
100-
local:
101-
basePath: "/app/storage"
102-
queue:
103-
type: postgres
104-
tasks:
105-
tmpDir:
106-
path: /tmp/kestra-wd/tmp
107-
url: http://localhost:8080/
84+
export KESTRA_CONFIGURATION=$'
85+
datasources:
86+
postgres:
87+
url: jdbc:postgresql://postgres:5432/kestra
88+
driverClassName: org.postgresql.Driver
89+
username: kestra
90+
password: k3str4
91+
kestra:
92+
server:
93+
basicAuth:
94+
enabled: false
95+
username: "[email protected]" # it must be a valid email address
96+
password: kestra
97+
repository:
98+
type: postgres
99+
storage:
100+
type: local
101+
local:
102+
basePath: "/app/storage"
103+
queue:
104+
type: postgres
105+
tasks:
106+
tmpDir:
107+
path: /tmp/kestra-wd/tmp
108+
url: http://localhost:8080/'
108109
```
109110

110111
::alert{type="info"}

0 commit comments

Comments
 (0)