Skip to content

Instantly share code, notes, and snippets.

@voaii
Created May 24, 2023 11:16
Show Gist options
  • Select an option

  • Save voaii/7be59e1800666ee0b0163a1a0626e7a5 to your computer and use it in GitHub Desktop.

Select an option

Save voaii/7be59e1800666ee0b0163a1a0626e7a5 to your computer and use it in GitHub Desktop.
nano ~/.zshrc
alias thelounge="docker exec --user node -it thelounge thelounge"
source ~/.zshrc
thelounge install thelounge-theme-ianon
cd ~
mkdir thelounge
nano thelounge/docker-compose.yml
version: '2'
services:
thelounge:
image: ghcr.io/thelounge/thelounge:4.3.1
container_name: thelounge
ports:
- "9000:9000"
restart: always
volumes:
- ~/thelounge:/var/opt/thelounge
docker-compose up -d
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment