Add static web server for wger

This commit is contained in:
Isaac Shoebottom 2024-08-06 16:50:49 -03:00
parent 2949162efe
commit 34838586c0

View File

@ -29,6 +29,17 @@ services:
retries: 5 retries: 5
restart: unless-stopped restart: unless-stopped
static:
image: joseluisq/static-web-server:latest
container_name: wger_static
ports:
- 9003:80
restart: unless-stopped
environment:
- SERVER_ROOT=/var/public
volumes:
- /docker/appdata/wger/web:/var/public
db: db:
image: postgres:15-alpine image: postgres:15-alpine
container_name: wger_db container_name: wger_db