No description
- PHP 82.4%
- Dockerfile 13.1%
- Shell 4.5%
| .gitignore | ||
| composer.json | ||
| composer.lock | ||
| docker-compose.dev.yaml | ||
| Dockerfile | ||
| index.php | ||
| README.md | ||
| start_server.sh | ||
Hallo!
Wat is dit?
Dit is een testpagina.
Lokale ontwikkeling
Dit ding heeft ook nog een docker-compose file voor lokale ontwikkeling:
services:
app:
build:
context: .
dockerfile: Dockerfile
container_name: composer-test-app
working_dir: /app
volumes:
- ./:/app
ports:
- "8000:8000"
command: php -S 0.0.0.0:8000 -t /app
Code
Wat C# code kan ook niet missen natuurlijk:
using System;
namespace HelloWorld
{
class Program
{
static void Main(string[] args)
{
Console.WriteLine("Hello World!");
}
}
}