Skip to content

haxtheweb/containers

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

15 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

containers

Containerization of HAXTheWeb dev environments and deployments — containers in hax land

Project Overview

This repository provides Docker Compose configurations for both a simple hosting environment and a full-featured development environment for HAXTheWeb.

Prerequisites

Usage

Simple Host

To run a single, unmanaged site:

docker compose up -d simplehost

Developer Environment

To start the full-featured dev environment:

docker compose up -d devenv

Stopping and Removing Containers

docker compose down

Services

  • simplehost: Minimal environment for hosting a single site.
  • devenv: Full dev environment with extra tools and utilities.

Example Commands

  • Build images: docker compose build
  • View running containers: docker compose ps
  • View logs: docker compose logs <service>