Sign inSign up

vertigo235/slic3rdev

By vertigo235

Updated over 7 years ago

Image
0

286

vertigo235/slic3rdev repository overview

Slic3rPEDevEnv

An opinionated take on a docker based development environment for Slic3r Prusa Edition.

Getting Started

Run the docker container and access with port 6080

docker run -p 6080:80 nmistry73/slic3r-pe-dev-env

Browse to http://localhost:6080 Open a LXTerminal and run the follow to launch the included (under "System Tools")

cd ~/Slic3r
./slic3r.pl --gui

Building latest version of Slic3r PE

In the event that you want to use a more recent version of Slic3r PE

export LDLOADLIBS=-lstdc++
cd ~/Slic3r
git pull origin master
perl Build.PL --gui \
    && mkdir -p build && cd build \
    && cmake .. -DCMAKE_BUILD_TYPE=Release \
    && make

Building the docker image

Building the docker image will always pull the latest Slic3rPE from github.

docker build -t slic3r-pe-dev-env .

Thanks

Thanks to dorowu for his ubuntu-desktop-lxde-vnc docker image which is the base for this image. https://hub.docker.com/r/dorowu/ubuntu-desktop-lxde-vnc/ This was a real time saver.

Tag summary

Content type

Image

Digest

Size

1007.6 MB

Last updated

over 7 years ago

docker pull vertigo235/slic3rdev