Skip to content

Instantly share code, notes, and snippets.

@AlperRehaYAZGAN
Created November 5, 2024 20:31
Show Gist options
  • Save AlperRehaYAZGAN/c783fb2d4369343ebfc7bfa83381cb80 to your computer and use it in GitHub Desktop.
Save AlperRehaYAZGAN/c783fb2d4369343ebfc7bfa83381cb80 to your computer and use it in GitHub Desktop.
Simple bytebase docker-compose file with some definitions
# docker run --rm --init \
# --name bytebase \
# --publish 8080:8080 --pull always \
# --volume ~/.bytebase/data:/var/opt/bytebase \
# bytebase/bytebase:2.20.0
version: '3.8'
services:
bytebase:
image: bytebase/bytebase:2.20.0
ports:
- "8080:8080"
volumes:
- ~/volumes/bytebase:/var/opt/bytebase
restart: unless-stopped
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment