From 078b20038e8b25ce50ed2500cec8fd37159e4f17 Mon Sep 17 00:00:00 2001 From: Oakley <66735773+OakleyCord@users.noreply.github.com> Date: Wed, 17 May 2023 21:47:12 -0400 Subject: [PATCH] Add example docker-compose file --- docker-compose.yml.example | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 docker-compose.yml.example diff --git a/docker-compose.yml.example b/docker-compose.yml.example new file mode 100644 index 00000000..cfe03ac7 --- /dev/null +++ b/docker-compose.yml.example @@ -0,0 +1,19 @@ +version: '3.5' + +services: + cobalt: + build: . + restart: unless-stopped + container_name: cobalt + ports: + - 9000:9000/tcp + environment: + # Set this to the port in which cobalt will run on + - port=9000 + # Set this to your instance's URL + - selfURL='https://co.wukko.me' + # Set this to a random SHA-512 hash (you can just paste the output of "head /dev/random | sha512sum") + - streamSalt=PLACEHOLDER + + +