14 lines
416 B
Plaintext
14 lines
416 B
Plaintext
# SurrealDB program for the single-container image only.
|
|
# Appended to supervisord.conf at build time (see the `single` stage in the Dockerfile).
|
|
|
|
[program:surrealdb]
|
|
command=surreal start --log trace --user root --pass root rocksdb:/mydata/mydatabase.db
|
|
stdout_logfile=/dev/stdout
|
|
stdout_logfile_maxbytes=0
|
|
stderr_logfile=/dev/stderr
|
|
stderr_logfile_maxbytes=0
|
|
autorestart=true
|
|
priority=5
|
|
autostart=true
|
|
startsecs=5
|