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