blob: f8b0cf04695e0e4fd1dfe9667bea73e5e603d5ae (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
services:
now:
build: .
environment:
NOW_DOMAIN: "example.org"
NOW_CONFIG: "config.json"
volumes:
- ./config.json:/app/config.json:ro
- ./public:/app/public:ro
ports:
- "8000:80"
|