feat(compose): add docker-compose
All checks were successful
continuous-integration/drone/push Build is passing

Signed-off-by: Julien CLEMENT <julien.clement@epita.fr>
This commit is contained in:
Julien CLEMENT 2021-12-09 14:03:36 +01:00
parent 8de54489d6
commit ab79c607e9

10
docker-compose.yml Normal file
View File

@ -0,0 +1,10 @@
version: "3.9"
services:
nginx:
restart: always
build:
context: .
dockerfile: Dockerfile
ports:
- "8000:80"