Files
speer/docker-compose.yml
T

19 lines
352 B
YAML
Raw Normal View History

version: '3.8'
services:
speer:
image: nginx:alpine
container_name: speer
ports:
- "3002:80"
volumes:
- ./index.html:/usr/share/nginx/html/index.html:ro
- ./nginx.conf:/etc/nginx/conf.d/default.conf:ro
restart: unless-stopped
networks:
- hermes-network
networks:
hermes-network:
external: true