File tree Expand file tree Collapse file tree 5 files changed +12
-35
lines changed
Expand file tree Collapse file tree 5 files changed +12
-35
lines changed Load Diff This file was deleted.
Original file line number Diff line number Diff line change 1717 - name : Checkout
1818 uses : actions/checkout@v1
1919
20- - name : Start containers and Run tests
21- run : docker-compose up -d --build
20+ - name : Start containers
21+ run : docker-compose up -d mariadb mongo
22+
23+ - name : Start test container
24+ run : docker-compose up php8
25+
26+ - name : Cleanup containers
27+ run : docker-compose down
28+
Original file line number Diff line number Diff line change 11#! /usr/bin/env bash
22echo " Building PHP8 image..." &&
3- cd ./docker/php8 && docker build . -t danielme/laravel-php8 :latest
3+ cd ./docker/php8 && docker build . -t ghcr.io/danielme85/lltdb-testbench :latest
Original file line number Diff line number Diff line change @@ -22,6 +22,7 @@ services:
2222 - " 27888:27017"
2323
2424 php8 :
25+ image : ghcr.io/danielme85/lltdb-testbench
2526 container_name : laravel-log-to-db-php8
2627 build :
2728 context : ./docker/php8/
Original file line number Diff line number Diff line change 11#! /usr/bin/env bash
22docker-compose up -d mariadb mongo &&
3- docker-compose up php8 --build php8 &&
3+ docker-compose up php8 &&
44docker-compose down
You can’t perform that action at this time.
0 commit comments