Make Send image configurable

This commit is contained in:
timvisee
2020-07-09 12:11:05 +02:00
parent 52c280882a
commit 4b999e9dc5
3 changed files with 7 additions and 1 deletions

View File

@@ -1,3 +1,6 @@
# Docker image to use for Send
DOCKER_SEND_IMAGE=mozilla/send:latest
# Host to expose Send on # Host to expose Send on
HOST=send.example.org HOST=send.example.org

View File

@@ -19,6 +19,9 @@ See [docker-compose.yaml](./docker-compose.yaml).
### Example .env ### Example .env
```bash ```bash
# Docker image to use for Send
DOCKER_SEND_IMAGE=mozilla/send:latest
# Host to expose Send on # Host to expose Send on
HOST=send.example.org HOST=send.example.org

View File

@@ -28,7 +28,7 @@ services:
- proxy-vhost:/etc/nginx/vhost.d - proxy-vhost:/etc/nginx/vhost.d
- proxy-html:/usr/share/nginx/html - proxy-html:/usr/share/nginx/html
send: send:
image: 'mozilla/send:latest' image: '${DOCKER_SEND_IMAGE}'
restart: always restart: always
ports: ports:
- '1234:1234' - '1234:1234'