This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Remove Image | |
docker rmi <imageId/Name> | |
# Force remove image | |
docker rmi -f <imageId/Name> | |
# Remove dangling images | |
docker image prune | |
# Remove all images |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
declare(strict_types=1); | |
namespace App\Tests\Unit\Playground; | |
use Attribute; | |
use PHPUnit\Framework\TestCase; | |
use ReflectionAttribute; | |
use ReflectionClass; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Docker multistage | |
# 1. stage to run npm install | |
# 2. stage to create a webserver image with the build artifact from stage 1 | |
FROM node:latest as build-stage | |
WORKDIR /app | |
COPY ./ /app/ |
OlderNewer