Jeremy Zheng 31ecd14d9c :pencil: add service check há 4 anos atrás
..
documents 3855ab1f6d :pencil: fix docker check há 4 anos atrás
.gitignore 41b527db9b :hammer: add docker support há 4 anos atrás
README.md 31ecd14d9c :pencil: add service check há 4 anos atrás
first.sh 24ac3d86a2 :wrench: add podman start scripts há 4 anos atrás
next.sh 24ac3d86a2 :wrench: add podman start scripts há 4 anos atrás

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']
    
  • Clear outdated images: podman rmi -a -f

  • Import 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 5433 
    

start