visuddhinanda 2ea4888bbd Merge pull request #401 from visuddhinanda/master 4 년 전
..
documents 3855ab1f6d :pencil: fix docker check 4 년 전
.gitignore 41b527db9b :hammer: add docker support 4 년 전
README.md 2ea4888bbd Merge pull request #401 from visuddhinanda/master 4 년 전
first.sh 24ac3d86a2 :wrench: add podman start scripts 4 년 전
next.sh 24ac3d86a2 :wrench: add podman start scripts 4 년 전

README.md

Usage for Ubuntu 20.10 and newer

  • Install podman: sudo apt -y install podman runc buildah skopeo.
  • Setup /etc/containers/registries.conf.

    [registries.search]
    registries = ['quay.io', 'docker.io']
    
  • Work with podman image

    # clear outdated images
    podman rmi -a -f
    # uncompress image files
    cat palm.tar.xz.a* | tar xj
    # import new podman image
    podman load -q -i mint-TIMESTAMP.tar  
    
  • Enjoy it!

    # for the first time start
    ./docker/ubuntu/first.sh
    # fot the next time start
    ./docker/ubuntu/next.sh
    # start servers
    > sudo supervisord -c /etc/supervisor/supervisord.conf
    > netstat -ant | grep 'LISTEN'
    # connect to redis
    > redis-cli
    # connect to postgresql
    > psql -U postgres -h 127.0.0.1 -p 5432
    

start