https://github.com/cevich/travis_ubuntu
Automatic docker build image for running newer ubuntu SPCs on on travis
https://github.com/cevich/travis_ubuntu
Last synced: about 1 month ago
JSON representation
Automatic docker build image for running newer ubuntu SPCs on on travis
- Host: GitHub
- URL: https://github.com/cevich/travis_ubuntu
- Owner: cevich
- License: gpl-3.0
- Created: 2018-02-27T22:38:46.000Z (over 8 years ago)
- Default Branch: master
- Last Pushed: 2018-03-05T00:48:16.000Z (over 8 years ago)
- Last Synced: 2025-01-25T11:41:24.489Z (over 1 year ago)
- Size: 15.6 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# travis_ubuntu
Automatic docker build image for testing code in travis CI as a docker SPC.
e.g. .travis.yml
---
language: python
python:
- 3.6
sudo: required
services:
- docker
before_install:
- sudo apt-get -qq update
script: docker run --interactive --rm --privileged --ipc=host --pid=host --net=host
-v $PWD:$PWD:z -v /run:/run -v /etc/localtime:/etc/localtime
-v /var/log:/var/log -v /sys/fs/cgroup:/sys/fs/cgroup
-v /var/run/docker.sock:/var/run/docker.sock
--workdir $PWD docker.io/cevich/travis_ubuntu:latest ./some_script.sh
[See the docker hub page for details](https://hub.docker.com/r/cevich/travis_ubuntu/)