You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
24 lines
540 B
24 lines
540 B
|
3 months ago
|
version: '3.8'
|
||
|
|
|
||
|
|
services:
|
||
|
|
powhd-website:
|
||
|
|
build: .
|
||
|
|
container_name: powhd-analysis-site
|
||
|
|
ports:
|
||
|
|
- "14888:80"
|
||
|
|
restart: unless-stopped
|
||
|
|
volumes:
|
||
|
|
# Optional: mount assets directory for easy updates
|
||
|
|
- ./assets:/usr/share/nginx/html/assets:ro
|
||
|
|
environment:
|
||
|
|
- NGINX_HOST=localhost
|
||
|
|
- NGINX_PORT=80
|
||
|
|
networks:
|
||
|
|
- powhd-network
|
||
|
|
labels:
|
||
|
|
- "traefik.enable=false" # Disable traefik if running
|
||
|
|
- "com.docker.compose.project=powhd"
|
||
|
|
|
||
|
|
networks:
|
||
|
|
powhd-network:
|
||
|
|
driver: bridge
|