Skip to content

niosHD/docker-conan-server

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

14 Commits
 
 
 
 
 
 
 
 

Repository files navigation

docker-conan-server

Docker image definition for a Conan.io server

Running the server

First create the server container

$ mkdir conan_server
$ docker run \
    -p 9300:9300 \
    -v `pwd`/conan_server:/var/lib/conan/.conan_server \
    --name conan-server \
    nioshd/conan-server:latest

The configure the server by editing the .conan_server/server.conf file. The host_name and public_port parameters are of particular importance and must match the name of the docker host and the public port exposed for the container. For more information of the server.conf, see http://conanio.readthedocs.io/en/latest/server.html#server-configuration.

Example docker-compose.yml file

version: '2'
services:
  conan:
    image: nioshd/conan-server:latest
    container_name: conan-server
    volumes:
      - ./conan_server:/var/lib/conan/.conan_server
    ports:
      - 9300:9300
    restart: always

About

Docker image for current conan.io server using current python and a small alpine image.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Dockerfile 83.5%
  • Shell 16.5%