Files
evilspins/docker-compose.yml
valere 454700c428
Some checks failed
Deploy App / build (push) Failing after 1m28s
Deploy App / deploy (push) Has been skipped
config.sh -> .env
2025-10-01 08:29:25 +02:00

22 lines
422 B
YAML
Executable File

services:
evilspins:
image: local/evilspins
build:
context: .
dockerfile: Dockerfile
container_name: evilspins
restart: unless-stopped
working_dir: /app
ports:
- "${PORT}:${PORT_EXPOSED}"
environment:
VIRTUAL_HOST: "${DOMAIN}"
LETSENCRYPT_HOST: "${DOMAIN}"
PUID: "${PUID}"
PGID: "${PGID}"
networks:
default:
name: dockerweb
external: true