cc4fc0a
4364310
d900bad
4364310
|
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 |
---
version: "3.9"
services:
app:
image: websurfx:latest
build: .
ports:
- 8080:8080
depends_on:
- redis
links:
- redis
volumes:
- ./websurfx/:/etc/xdg/websurfx/
redis:
image: redis:latest
ports:
- 6379:6379
|