ci(docker): create example dockerfile and dockerignore

This commit is contained in:
Anhgelus Morhtuuzh 2024-11-10 01:39:39 +01:00
parent 99d5a59e64
commit 3b7bc746af
No known key found for this signature in database
GPG key ID: CAD341EFA92DDDE5
4 changed files with 188 additions and 1 deletions

11
docker-compose.yml Normal file
View file

@ -0,0 +1,11 @@
services:
now:
build: .
environment:
NOW_DOMAIN: "example.org"
NOW_DATA: "data.json"
volumes:
- ./data.json:/app/data.json:ro
- ./assets:/app/public:ro
ports:
- "8000:80"