CentOS 6.6 based Customizable Laravel Dev Container w/ User Auth - 1.093 GB
10K+
Laravel Auth Container Build
Built from appcontainers/centos66
In order to build the container from scratch, Run the following setup file to configure the environment.
https://raw.githubusercontent.com/appcontainers/laravel/master/dockerup.sh
Save the file, chmod+x the file and run it. Answer the questions and it will build the container automatically
./dockerup.sh
The dockerup.sh file will perform the following actions:
Build container using default values.
docker build -t appcontainers/laravel_auth .
Running the container
The container is built to allow several configurable variables to be passed in at runtime. The values are as follows:
Run the container using default values
docker run -d -it --name laravel -h laravel -P appcontainers/laravel-auth
This will assume the following
Run the container substituting the $varables with your own custom values
docker run -d -it \
--name laravel \
-h laravel \
-p 80:80 \
-p 138:138/udp \
-p 139:139 \
-p 445:445 \
-p 445:445/udp \
-e APP_NAME='testapp.com' \
-e APACHE_SVRALIAS='www.testapp.com localhost' \
-e MYSQL_SERVER='localhost' \
-e MYSQL_PASS='P@ssw0rd' \
-e MYSQL_DB='testapp' \
-e APP_USER='admin' \
-e APP_PASS='P@ssw0rd' \
-e SMB_USER='samba' \
-e SMB_PASS='password' \
appcontainers/laravel_auth
Navigate to the IP address of the server on the port specified (80 default) and log in with admin:password
Connect to the IP address of the server on the default samba ports (138,139,445) via smb (smb://IP.ADD.TO.HOST)
Laravel Authentication:
- User:admin
- Password:password
Samba Authentication:
- User:samba
- Password:password
Container Includes:
- Composer
- Laravel
- Bower
- Twitter Bootstrap, Bootstrap Additions, Bootstrap DateTimePicker
- AngularJS
- Angular-Route, Animate, Cookies, Loader, Resource, Sanatize, Touch, Motion
- Angular-Strap
- Lightbox
- Datatables
- JQuery, JQuery-UI
Content type
Image
Digest
sha256:812e02be1…
Size
389.5 MB
Last updated
almost 11 years ago
docker pull appcontainers/laravel_auth