Created
November 5, 2024 20:31
-
-
Save AlperRehaYAZGAN/c783fb2d4369343ebfc7bfa83381cb80 to your computer and use it in GitHub Desktop.
Simple bytebase docker-compose file with some definitions
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# 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