mirror of
https://github.com/timvisee/send-docker-compose.git
synced 2025-12-07 14:30:58 +03:00
Make Send image configurable
This commit is contained in:
@@ -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
|
||||||
|
|
||||||
|
|||||||
@@ -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
|
||||||
|
|
||||||
|
|||||||
@@ -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'
|
||||||
|
|||||||
Reference in New Issue
Block a user