13 lines
283 B
YAML
13 lines
283 B
YAML
|
|
services:
|
||
|
|
reverse-proxy:
|
||
|
|
image: nginx:alpine
|
||
|
|
ports:
|
||
|
|
- "3000:3000" # Expose nginx on host port 3000
|
||
|
|
volumes:
|
||
|
|
- ./nginx.conf:/etc/nginx/conf.d/default.conf # Mount config
|
||
|
|
networks:
|
||
|
|
- dokploy-network
|
||
|
|
|
||
|
|
networks:
|
||
|
|
dokploy-network:
|
||
|
|
external: true
|