File tree Expand file tree Collapse file tree 2 files changed +6
-3
lines changed
docker/rootfs/etc/cont-init.d Expand file tree Collapse file tree 2 files changed +6
-3
lines changed Original file line number Diff line number Diff line change 11#! /usr/bin/with-contenv bash
2+ set -e
23
34mkdir -p /data/logs
4- chown -R root:root /data/logs
5+ echo " Changing ownership of /data/logs to $( id -u) :$( id -g) "
6+ chown -R " $( id -u) :$( id -g) " /data/logs
7+
Original file line number Diff line number Diff line change @@ -18,10 +18,10 @@ if hash docker-compose 2>/dev/null; then
1818
1919 if [ " $1 " == " -f" ]; then
2020 echo -e " ${BLUE} ❯ ${YELLOW} Following Backend Container:${RESET} "
21- docker logs -f npmdev_npm_1
21+ docker logs -f npm_core
2222 else
2323 echo -e " ${YELLOW} Hint:${RESET} You can follow the output of some of the containers with:"
24- echo " docker logs -f npmdev_npm_1 "
24+ echo " docker logs -f npm_core "
2525 fi
2626else
2727 echo -e " ${RED} ❯ docker-compose command is not available${RESET} "
You can’t perform that action at this time.
0 commit comments