pages/docker-compose.yml

15 lines
215 B
YAML
Raw Normal View History

2024-10-06 19:50:15 +00:00
services:
pages:
build:
context: .
image: pages:latest
environment:
API_TOKEN: "api_token"
2024-10-07 06:59:46 +00:00
volumes:
- pages_data:/app/wwwroot
2024-10-06 19:50:15 +00:00
ports:
- "8080:80"
2024-10-07 06:59:46 +00:00
volumes:
pages_data: