• 0 Posts
  • 25 Comments
Joined 2 years ago
cake
Cake day: May 3rd, 2024

help-circle














  • Your L14 has one soldered ram module and one socketed module which is why you could upgrade it.

    It’s the “s” versions of the thinkpads that have non-upgradeable ram:

    T490 - socketed ram, upgradeable
    T490s - soldered ram, non-upgradeable
    T14 - socketed ram, upgradeable
    T14s - soldered ram, non-upgradeable
    etc etc

    Im not sure about the amd thinkpads as there are some models where the intel version has socketed ram whereas the amd version of the same laptop has fully soldered ram.
    The s versions are slightly smaller and lighter






  • Glad to see you got it working. One thing to add that you might find useful:

    it shows 20054:8080 for a very short period when I start the stack and then disappeared

    This is an indication that the container has stopped. Because you have restart: unless-stopped set, the container is stuck in a bootloop so portainer will always show a state of either starting or running. Docker container automatically stop when the application inside the container has exited or completed… Often because the application has encountered an error.

    Some more information that may or may not be useful:

    A good example of a container stopped because the application has finished is the Cross-seed container that people use to cross reference their torrents seeding in their bittorrent client with torrents available on other torrent trackers. In this case, the application runs a search on each tracker, downloads the files and once the search is done the application exits and then the docker container will stop.