15 lines
306 B
YAML
15 lines
306 B
YAML
|
version: "3.7"
|
||
|
services:
|
||
|
feed-the-void:
|
||
|
image: registry.askiiart.net/askiiart/feed-the-void
|
||
|
volumes:
|
||
|
- .:/data
|
||
|
restart: unless-stopped
|
||
|
|
||
|
nginx:
|
||
|
image: nginx:alpine-slim
|
||
|
volumes:
|
||
|
- ./site-files:/usr/share/nginx/html
|
||
|
restart: unless-stopped
|
||
|
ports:
|
||
|
- 8080:80
|