mirror of
https://github.com/vrtmrz/obsidian-livesync.git
synced 2026-04-08 10:05:25 +00:00
4 lines
187 B
Bash
Executable File
4 lines
187 B
Bash
Executable File
#!/bin/bash
|
|
set -e
|
|
echo "username: $username"
|
|
docker run -d --name couchdb-test -p 5989:5984 -e COUCHDB_USER=$username -e COUCHDB_PASSWORD=$password -e COUCHDB_SINGLE_NODE=y couchdb:3.5.0 |