Skip to content

Instantly share code, notes, and snippets.

@yemrekarakas
Created July 14, 2024 20:34
Show Gist options
  • Save yemrekarakas/535e13593999071133f2133dee42d2cd to your computer and use it in GitHub Desktop.
Save yemrekarakas/535e13593999071133f2133dee42d2cd to your computer and use it in GitHub Desktop.
Docker run to connect the adminer to the db in any existing container we use.
docker run \
--rm \
--name adminer \
--link bookstack_db \
--network bookstack_default \
-p 40000:8080 \
-e ADMINER_DESIGN='nette' \
-d \
adminer
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment