blob: 4a417c028fe569ded5c2d9eb83645fbab908c16a (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
|
#!/bin/sh
# Dumps you to a shell inside of the app container
docker run --rm -it \
--network dispatch-tracker_backend \
-v $(pwd)/static:/static \
-v $(pwd)/app:/app \
--user 0 \
dispatch-app \
ash
|