feed-the-void/docker-compose.yml

15 lines
304 B
YAML
Raw Normal View History

2023-11-21 11:53:00 -06:00
version: "3.7"
services:
feed-the-void:
image: registry.askiiart.net/askiiart/feed-the-void
volumes:
- .:/data
restart: unless-stopped
2023-11-21 12:14:26 -06:00
2023-11-21 11:53:00 -06:00
nginx:
image: nginx:alpine-slim
volumes:
- ./site-files:/usr/share/nginx/html
restart: unless-stopped
ports:
- 8080:80