22 lines
465 B
YAML
22 lines
465 B
YAML
services:
|
|
rackpeek:
|
|
container_name: rackpeek
|
|
image: aptacode/rackpeek:latest
|
|
ports:
|
|
- "8081:8080"
|
|
volumes:
|
|
- /srv/rackpeek-config:/app/config
|
|
environment:
|
|
- VIRTUAL_HOST=rackpeek.kolpacksoftware.com
|
|
- VIRTUAL_PORT=8081
|
|
- LETSENCRYPT_HOST=rackpeek.kolpacksoftware.com
|
|
- PUID=1000
|
|
- PGID=1000
|
|
user: "1000:1000"
|
|
restart: unless-stopped
|
|
|
|
networks:
|
|
default:
|
|
external:
|
|
name: npm-network
|