pages/docker-compose.yml

14 lines
247 B
YAML
Raw Normal View History

2024-10-06 19:50:15 +00:00
version: '3.8'
services:
pages:
build:
context: .
image: pages:latest
container_name: pages
environment:
API_TOKEN: "api_token"
ASPNETCORE_HTTP_PORTS: 80
ports:
- "8080:80"
restart: unless-stopped