AlexeyStolyarov / pupil-docker-ubuntu

Pupil development dependencies Ubuntu Docker image

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

pupil-docker-ubuntu

Pupil development dependencies Ubuntu 18.04 LTS Docker image.

Setup

Install docker CE on your host machine. Follow instructions here.

Docker on Linux

Follow installation instructions for Docker Community Edition (CE). Then install docker-compose.

Create a docker group:

sudo usermod -aG docker $(whoami)

Build Docker Image

Build the docker image. This will use the Dockerfile by default.

cd pupil-docker-ubuntu
docker build . --file 'Dockerfile' --tag 'pupillabs/pupil-docker-ubuntu:1.0'

Push Docker image to Docker Hub

If not logged in already, you will need to log in before pushing to docker.

docker login

Push the built image to dockerhub.

docker push

Debugging

You can run/enter the container like so.

docker run -d --name pupil-ubuntu <name or id of image> tail -f /dev/null   
docker exec -it <container name> bash

About

Pupil development dependencies Ubuntu Docker image

License:GNU Lesser General Public License v3.0


Languages

Language:Shell 100.0%