mirror of
https://gitlab.com/timvisee/send.git
synced 2024-11-10 13:13:00 +01:00
14 lines
202 B
YAML
14 lines
202 B
YAML
version: "3"
|
|
services:
|
|
web:
|
|
build: .
|
|
links:
|
|
- redis
|
|
ports:
|
|
- "1443:1443"
|
|
environment:
|
|
- REDIS_HOST=redis
|
|
- NODE_ENV=production
|
|
redis:
|
|
image: redis:alpine
|