strausmann/laravel-hosting-example.

My frist Docker Image to Hosting a Laravel Application

241 0 amd64

Build Information

General build information for this image

Docker Hub strausmann/laravel-hosting-example
Build Time 14 Nov 2021 11:41:37
Synchronised Yes
Stable Yes
Deprecated No

Tracked Tags

Known tags which link to a specific branched app version.

Branch Version Built
latest 1.0.0 14 Nov 2021 at 11:41:37

Daily Pull Statistics

Running this as a container

Basic examples for getting this image running as a container

Docker Compose

---
version: "2"
services:
  laravel-hosting-example:
    image: strausmann/laravel-hosting-example:1.0.0
    container_name: laravel-hosting-example
    restart: no

CLI

docker create \
  --name=laravel-hosting-example \  --restart no \
  strausmann/laravel-hosting-example:1.0.0