Docker 구성 초기화?

Docker 구성 초기화?

docker-compose.yml시작 시 기반 애플리케이션을 실행하는 방법이 혼란스럽습니다 .

나는 뛰고있어:

이제 두 tmux 세션 모두에서 통과합니다 docker-compose up. 하지만 머신이 재부팅되면 도움이 되지 않습니다.

답변1

먼저 sudo systemctl enable /usr/lib/systemd/system/docker.service.

그런 다음 docker-compose up -d.

-d, --detach               Detached mode: Run containers in the background,
                           print new container names. Incompatible with
                           --abort-on-container-exit.

(에서:https://docs.docker.com/compose/reference/up/)

내가 아는 한, 분리 모드에서 실행 중인 컨테이너도 재부팅 시 다시 시작되어야 합니다.

여전히 로그가 필요하거나 컨테이너가 실행 중이라면 다양한 compose CLI 명령을 숙지해야 합니다. 바라보다여기

관련 정보