mirror of
https://gitlab.com/timvisee/send.git
synced 2024-11-08 12:12:37 +01:00
20 lines
321 B
YAML
20 lines
321 B
YAML
version: "3"
|
|
services:
|
|
web:
|
|
build: .
|
|
links:
|
|
- redis
|
|
ports:
|
|
- "1443:1443"
|
|
environment:
|
|
- REDIS_HOST=redis
|
|
redis:
|
|
image: redis:alpine
|
|
selenium-firefox:
|
|
image: b4handjr/selenium-firefox
|
|
ports:
|
|
- "${VNC_PORT:-5900}:5900"
|
|
shm_size: 2g
|
|
volumes:
|
|
- .:/code
|