|
|
4 년 전 | |
|---|---|---|
| .. | ||
| documents | 4 년 전 | |
| .gitignore | 4 년 전 | |
| README.md | 4 년 전 | |
| first.sh | 4 년 전 | |
| next.sh | 4 년 전 | |
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