Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/sitback/docker-containers
Web-focused Docker containers
https://github.com/sitback/docker-containers
docker docker-container dockerfile web
Last synced: about 1 month ago
JSON representation
Web-focused Docker containers
- Host: GitHub
- URL: https://github.com/sitback/docker-containers
- Owner: Sitback
- License: mit
- Created: 2015-07-03T02:38:30.000Z (over 9 years ago)
- Default Branch: master
- Last Pushed: 2023-07-26T05:17:20.000Z (over 1 year ago)
- Last Synced: 2024-03-15T09:21:09.529Z (10 months ago)
- Topics: docker, docker-container, dockerfile, web
- Language: Dockerfile
- Homepage:
- Size: 2.81 MB
- Stars: 3
- Watchers: 8
- Forks: 5
- Open Issues: 9
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# docker-containers
[![Build Status](https://img.shields.io/circleci/project/Sitback/docker-containers/master.svg)](https://circleci.com/gh/Sitback/docker-containers)This is a set of Dockerfiles used to build all containers on [our container registry](https://registry.hub.docker.com/u/sitback/).
## Current containers
* [base](https://hub.docker.com/r/sitback/base/)
* Ubuntu 14.04
* Ubuntu 16.04
* [php](https://hub.docker.com/r/sitback/php/)
* 5.5 (from base:ubuntu-14.04)
* 5.6 (from base:ubuntu-14.04)
* 7.0 (from base:ubuntu-16.04)
* 7.1 (from base:ubuntu-16.04)
* [soe](https://hub.docker.com/r/sitback/soe/)
* PHP 5.5 (from php:5.5)
* PHP 5.6 (from php:5.6)
* PHP 7.0 (from php:7.0)
* PHP 7.1 (from php:7.1)
* [ci](https://hub.docker.com/r/sitback/ci/)
* PHP 5.5 (from soe:5.5)
* PHP 5.6 (from soe:5.6)
* PHP 7.0 (from soe:7.0)
* PHP 7.1 (from soe:7.1)
* [proxy](https://hub.docker.com/r/sitback/proxy/)
* HAProxy (for Node.JS) (from base:ubuntu-16.04)
* nginx (from base:ubuntu-16.04)
* nginx (for Node.JS) (from proxy:nginx)
* [solr](https://hub.docker.com/r/sitback/solr/)
* 5.3.x (from base:ubuntu-16.04)
* [node](https://hub.docker.com/r/sitback/node/)
* base (6.x) (from base:ubuntu-16.04)
* ember (for testing) (from node:base)
* [elasticsearch](https://hub.docker.com/r/sitback/elasticsearch/)
* 2.4.x (from elasticsearch:2.4, **for local development use only, do not use for production deployments!**)## Build prerequisites
* Docker (tested on 1.7+)## Build instructions
Make sure your Docker host is running.Clone this project and `cd` into the image you wish to build (e.g. 'base/ubuntu-14.04').
Run:
```bash
docker build -t sitback/base:ubuntu-14.04 .
```To push to the Docker registry, run:
```bash
docker push sitback/base:ubuntu-14.04
```