16 lines
No EOL
466 B
YAML
16 lines
No EOL
466 B
YAML
version: "3.7"
|
|
services:
|
|
feed-the-void:
|
|
image: registry.askiiart.net/askiiart/feed-the-void
|
|
volumes:
|
|
- .:/data
|
|
restart: unless-stopped
|
|
cpus: 0.25 # will use 25% of a single core, can be lowered if needed. if you don't set a CPU limit, it'll probably pin a single core the entire time it runs
|
|
|
|
nginx:
|
|
image: nginx:alpine-slim
|
|
volumes:
|
|
- ./site-files:/usr/share/nginx/html
|
|
restart: unless-stopped
|
|
ports:
|
|
- 8080:80 |