Experimenting with docker-compose.
Go to file
Noah 7c1bfbca57 Initial commit 2018-09-18 12:13:43 -07:00
nginx Initial commit 2018-09-18 12:13:43 -07:00
ssl Initial commit 2018-09-18 12:13:43 -07:00
.gitignore Initial commit 2018-09-18 12:13:43 -07:00
README.md Initial commit 2018-09-18 12:13:43 -07:00
docker-compose.yml Initial commit 2018-09-18 12:13:43 -07:00

README.md

Cloud

This repo is an experiment playing with docker-compose to configure a reproduceable web service cluster.

It spins up containers for:

  • My web blog, a Go program at github.com/kirsle/blog
  • A Redis cache for the blog.
  • Gitea, a Git web service.
  • PostgreSQL database for Gitea to store its data.
  • An nginx web proxy in front of all of these, exposing domains blog.kirsle.lh and git.kirsle.lh (localhost-only domains, for testing, with a self-signed SSL certificate in the ssl/ folder).

Install docker and docker-compose and systemctl enable docker.service and all that good stuff, and then:

$ docker-compose up

Put blog.kirsle.lh and git.kirsle.lh in your /etc/hosts and visit them.