mirror of
https://github.com/neon-mmd/websurfx.git
synced 2024-11-21 13:38:21 -05:00
16 lines
218 B
YAML
16 lines
218 B
YAML
version: "3.9"
|
|
services:
|
|
app:
|
|
image: websurfx:latest
|
|
build: .
|
|
ports:
|
|
- 8080:8080
|
|
depends_on:
|
|
- redis
|
|
links:
|
|
- redis
|
|
redis:
|
|
image: redis:latest
|
|
ports:
|
|
- 6379:6379
|