mirror of
https://github.com/linuxserver/budge.git
synced 2026-01-15 01:21:43 +08:00
23 lines
436 B
YAML
23 lines
436 B
YAML
version: '3'
|
|
services:
|
|
dev-proxy:
|
|
container_name: dev-proxy
|
|
image: ghcr.io/linuxserver/nginx
|
|
# network_mode: host
|
|
ports:
|
|
- 8090:80
|
|
- 3000:3000
|
|
- 5000:5000
|
|
volumes:
|
|
- ./docker:/config
|
|
- ./docker/custom-services.d:/custom-services.d
|
|
- ./:/app
|
|
environment:
|
|
PGID: 1000
|
|
PUID: 1000
|
|
TZ: America/New_York
|
|
|
|
redis:
|
|
container_name: redis
|
|
image: redis:alpine
|