13 lines
271 B
Plaintext
13 lines
271 B
Plaintext
version: '3.8'
|
|
|
|
services:
|
|
fdroid-nginx:
|
|
image: nginx:alpine
|
|
container_name: fdroid-nginx
|
|
volumes:
|
|
- ./fdroid-repo:/usr/share/nginx/html:ro
|
|
- ./nginx.conf:/etc/nginx/conf.d/default.conf:ro
|
|
ports:
|
|
- "8080:80"
|
|
restart: unless-stopped
|