27 lines
476 B
YAML
27 lines
476 B
YAML
version: '1.0'
|
|
|
|
networks:
|
|
frontend:
|
|
external: true
|
|
|
|
services:
|
|
web:
|
|
image: nginx:latest
|
|
restart: unless-stopped
|
|
volumes:
|
|
- '/hdd/poketypes:/usr/share/nginx/html:ro'
|
|
networks:
|
|
- frontend
|
|
|
|
updater:
|
|
build:
|
|
context: .
|
|
dockerfile: Dockerfile.updater
|
|
volumes:
|
|
- /hdd/poketypes:/dist
|
|
environment:
|
|
- REPO_URL=https://git.nauen-it.de/tobias/Pokemon-Type-Quiz.git
|
|
- BRANCH=main
|
|
restart: unless-stopped
|
|
|