Files
web2py/docker/fedora/web2py-paste

Start Service

systemctl start docker

Docker

cd /Docker/Fedora/web2py-paste
docker build -t your_username/fedora-web2py-paste .
docker run -d -v applications:/home/web2py/web2py/applications -p 8000:8000 --name fedora-web2py-paste your_username/fedora-web2py-paste
docker ps 
docker volume ls
docker volume inspect applications

Docker Compose

pip install docker-compose
cd /Docker/Fedora/web2py-paste
docker-compose up -d
docker-compose ps
docker volume ls
docker volume inspect root_applications

Docker Cloud

cd /Docker/Fedora/web2py-paste
docker login -u your_username
docker build -t your_username/fedora-web2py-paste .
docker push your_username/fedora-web2py-paste

Shell (Copy the content of the file into this scaffolding shell and replace the variable text $ with $ )

cat << EOF > docker-compose.yml

EOF cat docker-compose.yml

cat << EOF > Dockerfile

EOF cat Dockerfile

docker build -t your_username/fedora-web2py-paste . docker run -d -v applications:/home/web2py/web2py/applications -p 8000:8000 --name fedora-web2py-paste your_username/fedora-web2py-paste

docker-compose up -d docker-compose ps